 
$(document).ready(function( ) {
						   
						   
						   
	$('#loader').css("display", "none");
	
	$.scrollTo( '#anchor_intro',0 );
	
	$('body').css("width", "6000px");
	$('body').css("height", "4500px");
	$('#sve').css("display", "block");
 
	//by default, the scroll is only done vertically ('y'), change it to both.
	$.scrollTo.defaults.axis = 'xy'; 
	//this one is important, many browsers don't reset scroll on refreshes
	$.scrollTo( '#anchor_intro',0 );	//reset all scrollable panes to (0,0)
	
	//TOC, shows how to scroll the whole window
	$('a.menuX').click(function(){//$.scrollTo works EXACTLY the same way, but scrolls the whole screen
		$.scrollTo( this.hash, 1000 );
		return false;
	});
	

});
