var api_key = 'fbfc4c4265c6224034b3fcbf3a34e17c';
var flickr = new Galleria.Flickr(api_key);    
flickr.setOptions({ max:60, size:'big', sort:'date-posted-desc', description:true });   
flickr.getSet('72157625956209579', function(data) {jQuery(function($){ $(".images").galleria({ data_source: data,           
image_crop: false,
thumb_crop: true,
transition: 'fade',
transition_speed: 700,
autoplay: true,
data_config: function(img) {           
return  {
title: $(img).parent().children("strong").html(),
description: $(img).parent().children("span").html()
};
},extend: function() {
this.bind(Galleria.IMAGE, function(e) {
$(e.imageTarget).css('cursor','pointer').click(this.proxy(function() { this.openLightbox(); }));
});
}});}); });

