$(function() { $("#subnav li").hover( function(){ $(this).addclass("hover"); $(this).stop().animate({margintop:0},500); $(this).parent().prev().children().first().stop().animate({margintop:0},500); $(this).find("a").addclass("hover"); }, function(){ $(this).removeclass("hover"); $(this).stop().animate({margintop:"124px"},100); $(this).parent().prev().children().first().stop().animate({margintop:"124px"},100); $(this).find("a").removeclass("hover"); } ) })