$(function() { $(".mainlevel:has(div)").hover(function() { $(this).children("div").stop(true, true).slidedown(300); }, function() { $(this).children("div").stop(true, true).slideup(1); }) });