$(document).ready(function() {
	 $('#menu_hor a').hover(function() {
		 $(this).css("background", "url(img/seta_menu.gif) no-repeat bottom center");
		 $(this).css("color", "#FFF");
		 $(this).stop().animate({ bottom: "0px" }, 'fast');
	  }, function() {
		 $(this).css("background", "none");
		 $(this).css("color", "#d6d6d6");
	     $(this).stop().animate({ bottom: "-5px" }, 'fast');
	 });
});
