startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		navRoot.onmouseover=function() {
			this.className+=" over";
		}
		navRoot.onmouseout=function() {
			this.className=this.className.replace(" over", "");
		}
	}
}

