$(document).ready(function(e) { $(".header .box .share ul li").hover(function(){ $(this).find(".img1").animate({top:"-20px"}); $(this).find(".img2").animate({top:"0px"}); },function(){ $(this).find(".img1").animate({top:"0px"}); $(this).find(".img2").animate({top:"20px"}); }) $(".header .menu ul li").hover(function(){ $(this).find(".img1").stop().animate({left:"-35px"}) $(this).find(".img2").stop().animate({left:"0px"}) $(this).find("i").stop().animate({top:"23px"}) $(this).find("span").stop().animate({top:"0px"}) },function(){ $(this).find(".img1").stop().animate({left:"0px"}) $(this).find(".img2").stop().animate({left:"-35px"}) $(this).find("i").stop().animate({top:"0px"}) $(this).find("span").stop().animate({top:"16px"}) }) });