$(function(){ $("#container div a").hover(function(){ $("img", this).stop().animate({top:"-130px"},{queue:false,duration:1800}); }, function() { $("img", this).stop().animate({top:"0px"},{queue:false,duration:1500}); }); $("#horizontal div a").hover(function(){ $("img", this).stop().animate({left:"-296px"},{queue:false,duration:1500}); }, function() { $("img", this).stop().animate({left:"0px"},{queue:false,duration:1500}); }); });