Skip to main content Scroll Top
404
PAGE NOT FOUND
We’re sorry, the page you have looked for does not exist in our database! Maybe go to our   home page   or try to use a search?
jQuery(function($) { // Listen for taps on the little arrow toggle $(document).on("click touchstart", ".menu-item-parent-toggle", function(e) { e.preventDefault(); e.stopPropagation(); var li = $(this).closest("li"); // Toggle open class li.toggleClass("submenu-open"); // Show/hide submenu li.children(".sub-menu").slideToggle(250); }); // Also make tapping the parent text open submenu (optional) $(document).on("click touchstart", "li.menu-item-has-children > a", function(e) { // Only on mobile if (window.innerWidth <= 1024) { e.preventDefault(); $(this).siblings(".menu-item-parent-toggle").trigger("click"); } }); });