Sign up to enjoy free U.S. shipping and returns
on your first order.
STYLE 2
User ID and access token do not match. Please check again.
Sign up to our newsletter
and receive 10% off your first order!
STYLE 3
SIGNUP FOR OUR NEWSLETTERS
NEWSLETTER STYLE 4
Sign up to enjoy free U.S. shipping and returns
on your first order.
//on mouse over show cursor
$("#menu-item-3013").mouseover(function(){
$("#menu-item-3013").css("cursor", "pointer");
});
//on click show mega menu
$("#menu-item-3013").click(function(){
$(".submenu.megamenu").css("visibility", "visible");
});
//on mouse leave hide mega menu
$("#menu-item-3013").mouseleave(function() {
$(".submenu.megamenu").css("visibility", "hidden");
});