jQuery(function( $ ){
	//borrowed from jQuery easing plugin
	//http://gsgd.co.uk/sandbox/jquery.easing.php

	$('#navigation a').click(function(){
		$.scrollTo( this.hash, {duration:1200});
//		$(this.hash).find('span.message').text( this.title );
		return false;
	});
	
	$('#.nav a').click(function(){
		$.scrollTo( this.hash, {duration:1600});
//		$(this.hash).find('span.message').text( this.title );
		return false;
	});	
	

});