define(['jquery','matchMedia'],function($,matchMedia){'use strict';const omsElement=$('.wrapper-oms'),navSectionOms=$('div.sections.nav-sections').children('.wrapper-oms');$(window).on('load',()=>{matchMedia({media:'(max-width: 767px)',entry(){if(navSectionOms.length===0){$(omsElement.detach()).prependTo('div.sections.nav-sections');}},exit(){$(omsElement.detach()).prependTo('#header-custom > .wrapper-header');}});let menuCatogies=setInterval(function(){let arrayList=$('ul.level0.submenu.ui-menu.ui-widget.ui-widget-content.ui-corner-all');if(arrayList.length){for(let i=0;i<=arrayList.length;i++){$(arrayList[i]).on({mouseenter:function(){$(arrayList[i]).prev().addClass('under-style');},mouseleave:function(){$(arrayList[i]).prev().removeClass('under-style');}});} clearInterval(menuCatogies);}},200);});});