jQuery(function( $ ){
	
	
	
	$('.navigation a').click(function(){//$.scrollTo works EXACTLY the same way, but scrolls the whole screen
		$.scrollTo( this.hash, 500);
		$(this.hash).find('span.message').text( this.title );
		return false;
	});
	
	
	
	
	
	
	
	
	
	
});
