I need some updated mega menu code - Wix changed things and now my code doesn't work!

Here’s the site: www.sofacityusa.com

Here’s my simple code that no longer works - the (strip) menu won’t stay down:

export function ShopButton_mouseIn ( event , $w ) {
$w ( “#ShopStrip” ). expand ();
$w ( “#ShopButton” ). disable ();
}

export function ShopButton_mouseOut ( event , $w ) {
$w ( “#ShopStrip” ). collapse ();
$w ( “#ShopButton” ). enable ()
}

export function ShopStrip_mouseIn ( event , $w ) {
$w ( “#ShopStrip” ). expand ();
$w ( “#ShopButton” ). disable ();
}

export function ShopStrip_mouseOut ( event , $w ) {
$w ( “#ShopStrip” ). collapse ();
$w ( “#ShopButton” ). enable ()
}

Also, I have this code on every page:
$w . onReady ( function () {
$w ( “#ShopStrip” ). collapse ();
$w ( “#ShopButton” ). enable ();
});