$(function(){ var indexnav; $('.menu>ul>li').hover(function() { indexnav = $(this).parents().find('li a.act').parent().index(); $(this).children('a').addclass('on'); $(this).siblings().children('a').removeattr('class'); $(this).children('.drop').stop(true).slidedown(300); },function(){ $(this).children('.drop').stop(true).slideup(300); $('.menu>ul>li').eq(indexnav).siblings().children('a').removeattr('class'); $('.menu>ul>li').eq(indexnav).children('a').addclass('act'); }); $('.m_menu').click(function(e) { $('.menu').slidetoggle(); }); $('.menu .drop h4').click(function(e) { if(window_w<768){ $(this).parent().siblings().find('.hide').slideup(); $(this).next('.hide').slidedown(); } }); }) $(function(){ $('.n_menu').click(function(e) { $('.bj').show(0,function(){ $('body').toggleclass('open'); }); }); $('.bj').click(function(e) { $('body').removeclass('open'); $(this).hide(); }); $('.subnav li:has(div)').hover(function(e){ $(this).find('.hide').slidedown(); }); })