$(function(){ $(".menu").bind("click",function(){ $(".menu-ul").slideToggle(); }); $(".we").bind("click",function(e){ e.stopPropagation(); $(".news").css("top","0"); $(".busin").css("top","244px") ; }); $(".news").bind("click",function(e){ e.stopPropagation(); $(this).css("top","-152px"); $(".busin").css("top","246px"); }); $(".busin").bind("click",function(e){ e.stopPropagation(); $(this).css("top","91px"); $(".news").css("top","-153px"); }); })