jQuery(function( $ ){
		
	//TOC, shows how to scroll the whole window
	$('ul.links a').click(function(){ //$.scrollTo works EXACTLY the same way, but scrolls the whole screen
		$.scrollTo( this.hash, 1000, { over:{ top:0, left:0 } });
		return false;
	});
	$('.btt a').click(function(){ //$.scrollTo works EXACTLY the same way, but scrolls the whole screen
		$.scrollTo( this.hash, 1000, { over:{ top:0, left:0 } });
		return false;
	});
});