$(function(){ $(".infocus").focus(); $(".infocus").hover(function(){ $(".left_btn",this).stop().animate({"left":"0"},500) $(".right_btn",this).stop().animate({"right":"0"},500) },function(){ $(".left_btn",this).stop().animate({"left":"-50px"},500) $(".right_btn",this).stop().animate({"right":"-50px"},500) }) })