jQuery(function( $ ){
	
	$.scrollTo.defaults.axis = 'y'; 			
	$.scrollTo( 0 );
	
	$('a.scrollTo').click(function(){ // Set the link that activates the scrollTo
		$.scrollTo( this.hash, 800); // Set the speed of the Transition
		return false;
	});
	
});
