Corporate Partners are corporations that provide financial or in-kind donations.
Community Partners are external organizations that collaborate with us to achieve shared community goals, like addressing local needs, improving services, or supporting public initiatives.
document.addEventListener('DOMContentLoaded', function() {
// Only apply on mobile
function initMobileSubmenus() {
if (window.innerWidth > 1024) return;
document.querySelectorAll('.menu-item-has-children > a').forEach(link => {
// Remove previous click handlers to prevent duplicates
link.replaceWith(link.cloneNode(true));
});
document.querySelectorAll('.menu-item-has-children > a').forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault(); // prevent navigation
const submenu = this.nextElementSibling;
if (!submenu) return;
// Close any other open submenus
document.querySelectorAll('.menu-item-has-children .sub-menu.open').forEach(other => {
if (other !== submenu) {
other.classList.remove('open');
other.style.display = 'none';
}
});
// Toggle this submenu
if (submenu.classList.contains('open')) {
submenu.classList.remove('open');
submenu.style.display = 'none';
} else {
submenu.classList.add('open');
submenu.style.display = 'block';
}
});
});
}
initMobileSubmenus();
// Re-initialize on window resize in case user rotates device
window.addEventListener('resize', initMobileSubmenus);
});