// JavaScript Document $(document).ready(function(){ }); function showRelatedSubmenu( menuSection, submenuItem ) { $(".top-menu-firstLvl").children().each(function(){ if($(this).attr('class') == 'active') $(this).removeClass(); }); var tempCounter = 0; $(".top-menu-secondLvl-section").each(function(){ if(tempCounter == menuSection) { $(this).css({'display':'block'}); } else { $(this).css({'display':'none'}); } tempCounter++; }); if(menuSection == 0) { $(".top-menu-firstLvl").children().eq(0).addClass('active'); } else if(menuSection == 6) { $(".top-menu-firstLvl").children().eq(6).addClass('active'); } else { $(".top-menu-firstLvl").children().eq(menuSection).addClass('active'); } $(".top-menu-secondLvl-section").eq(menuSection).children().eq(submenuItem).addClass('active'); }