$(function () { var st = 180; $('#nav_all>li').mouseenter(function () { $(this).find('ul').stop(false, true).slideDown(st); }).mouseleave(function () { $(this).find('ul').stop(false, true).slideUp(st); }); $('#nav_all>li').mouseenter(function () { $(this).find('ul').find('ul').stop(false, true).slideUp(st); }).mouseleave(function () { $(this).find('ul').find('ul').stop(false, true).slideDown(st); }); $('#nav_all>li>ul>li').mouseenter(function () { $(this).find('ul').stop(false, true).slideDown(st); }).mouseleave(function () { $(this).find('ul').stop(false, true).slideUp(st); }); $('#nav_all>li>ul>li').mouseenter(function () { $(this).find('ul').find('ul').stop(false, true).slideUp(st); }).mouseleave(function () { $(this).find('ul').find('ul').stop(false, true).slideDown(st); }); $('#nav_all>li>ul>li>ul>li').mouseenter(function () { $(this).find('ul').stop(false, true).slideDown(st); }).mouseleave(function () { $(this).find('ul').stop(false, true).slideUp(st); }); });