function hideShow(thing)  
{ 
 if (document.getElementById(thing).className == "dropdownOff")
 {
	 document.getElementById(thing).className = "dropdownOn"
 }
 
 else {
	 document.getElementById(thing).className = "dropdownOff"
 }
}

function hide(thing)  
{ 
document.getElementById(thing).className = "dropdownOff"
}

function show(thing)  
{ 
document.getElementById(thing).className = "dropdownOn"
}
