// JavaScript Document

function showmenu(theidname)
			{
				if(document.getElementById(theidname).style.display=='none')
				{
					document.getElementById(theidname).style.display='block';
				} else {
					document.getElementById(theidname).style.display='none';
				}
			}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;}

/* function IEHoverPseudo() {
	var navItems = document.getElementById("dropdown").getElementsByTagName("li");
	
	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className == "menuparent") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuparent"; }
		}
	}

}
window.onload = IEHoverPseudo;
*/