// JavaScript Document

var href;

$(document).ready(function(e)
{	
	
	$('a').click(function()
	{
		
		href = $(this).attr('href');
		
		$('html').animate({'margin-top':'0px'}, 1000, 'easeOutExpo');	
		
		setTimeout(function()
		{			
			window.location.href=href;
			
		}, 900);
		
		return false;
		
	});
	

});



