// header $(function(){ var oheli = $("#header #menu .nav_ul>li"); oheli.each(function() { if ($(this).hasclass("act")) { num = $(this).index(); } $(this).hover(function() { oheli.eq(num).removeclass("act"); $(this).children(".sub_menu").stop().show(400); }, function() { oheli.eq(num).addclass("act"); $(this).children(".sub_menu").stop().hide(400); }); }); //btn-nav $('.btn-nav').on('click tap', function() { $('.nav-content').toggleclass('shownav hidenav').removeclass('hidden'); $(this).toggleclass('animated-nav'); $("body").toggleclass('ove'); }); })