$(document).ready(function(){
	
	
	$('nav a,footer a.up').click(function(e){
										  
				
		$.scrollTo( this.hash || 0, 400);
		e.preventDefault();
	});


	
	
	$('#flyer').hover(function(){
		$(this).stop().animate({'left':-20},'slow');
	},function(){
		$(this).stop().animate({'left':-400},'slow');
	});
	
	setTimeout(function(){$('#flyer').animate({'left':-400},'slow');},500);
});
