$(document).ready(function(){
	$("#header_nav li a").hover(function(){
		$(this).find('img').stop().animate({top:"-16"},"slow" , "easeOutBounce" );
		},function (){$(this).find('img').stop().animate({top:"0"}, 300 );
	});
});
