Skip to content
Home
Staff
Volunteers
Events
Donation Program
Partners
News
Blog
Contact
Members
Support Request
Clients
Referring Organizations
Home
Staff
Volunteers
Events
Donation Program
Partners
News
Blog
Contact
Members
Support Request
Clients
Referring Organizations
Donate
Facebook-f
Instagram
Linkedin-in
This is a dummy page used as a placeholder in the Header menu
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); });