// JavaScript Document $(document).ready(function(){ $('#top-menu a').each(function(i,item){ if (document.location.href.match(this.href)){ $(item).parents('li').addClass("selected"); } }); $('#main-menu a').each(function(i,item){ if (document.location.href.match(this.href)){ $(item).parents('li').addClass("selected"); } }); $(function(){ $(".dropdown-menu > li > a.trigger").on("click",function(e){ e.preventDefault(); var current=$(this).next(); var grandparent=$(this).parent().parent(); if($(this).hasClass('left-caret')||$(this).hasClass('right-caret')) $(this).toggleClass('right-caret left-caret'); grandparent.find('.left-caret').not(this).toggleClass('right-caret left-caret'); grandparent.find(".dropdown-menu:visible").not(current).hide(); current.toggle(); e.stopPropagation(); }); $(".dropdown-menu > li > a:not(.trigger)").on("click",function(){ var root=$(this).closest('.dropdown'); root.find('.left-caret').toggleClass('right-caret left-caret'); root.find('.dropdown-menu:visible').hide(); }); }); });