// Initialize the application after the window has loaded
$(window).load(function() {        
    
	// Enable lightbox
	/*
	$('a.fancybox').fancybox({
		'speedIn':	     600,
		'speedOut':	     200,
		'titlePosition': 'inside'
	});
	*/
	
	$('a.fancybox').fancybox({
	
		'speedIn':			600,
		'speedOut':			200,
		'titlePosition':	'inside',
		'maxHeight':		500,
		'nextEffect':		'none',
		'prevEffect':		'none' 
	
	
	});


});


	
