(function($){ $(function(){ $('.menu_sub').bind({ mouseenter: function() { $(this).css('background','#669bcb'); $(this).children(".menu_a").css('color','#fff'); var $btn=$(this).children("ul"); if(!$btn.is(':animated')) $btn.slideDown({duration: 300, easing: "easeOutQuart", complete: "callback"}); }, mouseleave: function() { $(this).children("ul").slideUp({duration: 500, easing: "easeOutQuart", complete: "callback"}); $(this).css('background','#fff'); $(this).children(".menu_a").css('color','#000'); } }); }); })(jQuery);