// JavaScript Document

startList = function() {
	var navRoot = document.getElementById("navmenu").getElementsByTagName("LI");
	for (var i=0; i<navRoot.length; i++) {
		navRoot[i].onmouseover=function() {
			this.className+=" over";
		}
		navRoot[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" over"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", startList );





/*/startList = function() {
	var navRoot = document.getElementById("mainmenu").getElementsByTagName("LI");
	for (var i=0; i<navRoot.length; i++) {
		navRoot[i].onmouseover=function() {
			this.className+=" over";
		}
		navRoot[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" over"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", startList );*/