$(document).ready(function(){
						   
	$(".navslide").hoverIntent(moveUp,moveDown);
	
	function moveUp(){ $(this).animate({paddingTop: "0px"}, 400, "easeOutQuart");}
	function moveDown(){ $(this).animate({paddingTop: "69px"}, 400, "easeOutQuart");}
	
});

