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

    jQuery('.carousel').jcarousel({
        scroll: 5
    });
});
