$('document').ready(function(){
			
	$('body').css('height','6000px');
	
	// Attivazione eventi JS e temizzazione elemento
	$('body').photoTheme({
		ajaxLink: true,
		ajaxLoading:'#loading',
		links:{ 
			popup:false, 
			width:650, 
			height:500, 
			autoDimensions:false,
			scrollClose:false,
			
			onContentInitiated:function( cnt, cfg ){
				
				$('#cnt').append('<a id="top" href="#menu-w" style="display:block;margin-top:20px;border-top:1px solid #ddd;padding-top:5px;text-align:right;color:#aaa;text-decoration:none;">Top</a>');
				
				$('#top').click(function(){
					
					$.scrollTo( $(this).attr('href'), cfg.scrollConfig );
					return false;
				});
				
			},
			
		e:''},
		onLoad:function(){
			// Nasconde i contenuti della home.
			if ( document.location.pathname == '/' ) $('#cnt').hide();
		}
	});
	
});
