 $(document).ready(function() {
 	
 	// Preload rollovers
 	$.preloadCssImages();
    // Load galleria theme
   	Galleria.loadTheme('js/themes/classic/galleria.classic.js');
   	// Start the function
   	$('#galleria').galleria({
		history   : true, // activates the history object for bookmarking, back-button etc.
		max_scale_ratio: 1,
		image_crop: false,
		height: 600
	});
   	// Reveal the gallery block
    $('#galleria').show(); 
    // Fade in page elements except header which has sweet gif animation
    $('#topNav, #body, #footerNav').fadeIn(600);
 
 });


