// nav is the panel that opens

document.getElementById('home').onmouseover = function () { if (document.header_initialized) { closeActiveMenu(); } };
	
document.getElementById('aboutus').onmouseover = function () { if (document.header_initialized) { closeActiveMenu(); openMenu('aboutus'); } };
document.getElementById('aboutus').onmouseout = function () { if (document.header_initialized) { closeActiveDelay() } };
document.getElementById('nav_aboutus').onmouseover = function () { if (document.header_initialized) { openMenu('aboutus') } };
document.getElementById('nav_aboutus').onmouseout = function () { if (document.header_initialized) { closeActiveDelay() } };

document.getElementById('howtohelp').onmouseover = function () { if (document.header_initialized) { closeActiveMenu(); openMenu('howtohelp'); } };
document.getElementById('howtohelp').onmouseout = function () { if (document.header_initialized) { closeActiveDelay() } };
document.getElementById('nav_howtohelp').onmouseover = function () { if (document.header_initialized) { openMenu('howtohelp') } };
document.getElementById('nav_howtohelp').onmouseout = function () { if (document.header_initialized) { closeActiveDelay() } };

document.getElementById('programs').onmouseover = function () { if (document.header_initialized) { closeActiveMenu(); openMenu('programs'); } };
document.getElementById('programs').onmouseout = function () { if (document.header_initialized) { closeActiveDelay() } };
document.getElementById('nav_programs').onmouseover = function () { if (document.header_initialized) { openMenu('programs') } };
document.getElementById('nav_programs').onmouseout = function () { if (document.header_initialized) { closeActiveDelay() } };

document.getElementById('contactus').onmouseover = function () { if (document.header_initialized) { closeActiveMenu(); } };

document.getElementById('contribute').onmouseover = function () { if (document.header_initialized) { closeActiveMenu(); } };

document.header_initialized = true;