$(function() { $(".menuBox").mouseenter(function() { $(".submenuBox") .animate({'height':'160px'}, 200, function() { $(".menuBox") .unbind('mouseleave') .mouseleave(function() { $(".submenuBox").animate({'height':'0px'}, 100) }) }) }) })