$(document).ready(function() {
	 $('#menu_h a').hover(function() {
		 $(this).css("background", "url(img/a_hover.png) no-repeat left center");
		 $(this).stop().animate({ left: "0px" }, 'fast');
	  }, function() {
		 $(this).css("background", "none");
	     $(this).stop().animate({ left: "-8px" }, 'fast');
	 });
});
