/*-- JAVASCRIPT FOR CSS MENU TO WORK PROPERLY IN IE for WINDOZE */
navHover = function() {
	var lis = document.getElementById("navmenu").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
		}
		lis[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", navHover);

/*  SHOW/HIDE SCRIPT BEGINS HERE */
function expandcollapse (textid) {
	whichtext = document.getElementById(textid);
	if (whichtext.className=="textshown") { 
		whichtext.className="texthidden"; 
		}
		else { 
			whichtext.className="textshown"; 
			}
	}  
/* SHOW/HIDE SCRIPT ENDS HERE */

