/**
 * 
 * (c) Mario Linz - gelight.de
 * http://www.gelight.de
 *
 */
$(function(){
	
    $('#gallery').galleria({
        image_crop: true,
        transition: 'fade',
        data_config: function(img) {
            return {
                description: $(img).next('p').html()
            };
        }
    });
	
	$("a[rel^='lightbox']").slimbox({/* Put custom options here */}, null, function(el) {
		return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
	});
	
});
