jQuery(function($){
		   $('ul.gallery').galleria({
			   history: true,
			   onImage   : function(image,caption,thumb) {
				   // fade in the image & caption
				   if(! ($.browser.mozilla && navigator.appVersion.indexOf("Win")!=-1) ) { // FF/Win fades large images terribly slow
					   image.css('display','none').fadeIn(1000);
				   }
			   }
			   });
});
