document.addEventListener('DOMContentLoaded', function() {
// Target the 'More' menu item specifically
var moreMenuItem = document.querySelector('.horizontal-menu-parent--dropDown .horizontal-menu-item--levelTop');
moreMenuItem.addEventListener('click', function(event) {
event.preventDefault(); // Prevent the default link behavior
// Toggle the visibility of the submenu
var subMenu = this.querySelector('.horizontal-menu-subParent');
if (subMenu.style.visibility === 'visible') {
subMenu.style.visibility = 'hidden';
} else {
subMenu.style.visibility = 'visible';
}
});
});