// Page OnLoad
function PageOnload() {
	StartList();
}



// Drop-down 
function StartList() {
	if (document.getElementById && document.getElementById("DropNav")) {
		navRoot = document.getElementById("DropNav").getElementsByTagName("LI");
		for (i=0; i<navRoot.length; i++) {
			node = navRoot[i];
			if (node.className == "Menu") {
				node.onmouseover=function() {this.className = 'MenuOver';}
				node.onmouseout=function() {this.className = 'Menu';}
			}
		}
	}
}

// Hide selects from Dropdown on IE rollover
function ToggleSelect(state) {
	var dom = (document.getElementById) ? true : false;
	var windows = (navigator.userAgent.toLowerCase().indexOf("windows")>-1) ? true : false;
	var ie5 = ((navigator.userAgent.toLowerCase().indexOf("msie")>-1) && dom) ? true : false;
	var _selects = document.getElementsByTagName("select");
	if (windows && ie5) {
		for (i=0; i<_selects.length; i++) {
			_selects[i].style.visibility = state;
		}
	}
}







