// JavaScript Document

menu_status = new Array();



states=new Array()
states[0]="mymenu1"
states[1]="mymenu2"
states[2]="mymenu3"
states[3]="mymenu4"
states[4]="mymenu5"
states[5]="mymenu6"
states[6]="mymenu7"
states[7]="mymenu8"
states[8]="mymenu9"
states[9]="mymenu10"

myVar=new Array()
myVar[0]="AboutUs"
myVar[1]="GettingHelp"
myVar[2]="OurPrograms"
myVar[3]="Youth"
myVar[4]="Parents"
myVar[5]="Professionals"
myVar[6]="ContactUs"
myVar[7]="SupportEMYS"
myVar[8]="SiteMap"
myVar[9]="whatsNew"

function hideallexcept(elm) {
for (var i = 0; i < states.length; i++) {
var layer = document.getElementById(states[i]);
if (elm!= states[i]) {
layer.style.display = "none";
document.getElementById(myVar[i]).src="navbar_images/" + states[i] + "_white.jpg";
}
else {
layer.style.display = "block";

document.getElementById(myVar[i]).src="navbar_images/" + states[i] + "_current.jpg";
}
}
}




function showHide(theid){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);

        if(menu_status[theid] != 'show') {
           switch_id.className = 'show';
           menu_status[theid] = 'show';
		   
		   
        }else{
           switch_id.className = 'hide';
           menu_status[theid] = 'hide';
        }
    }
}