// JavaScript Document

startList = function() {
if (document.all&&document.getElementById) {
	navNodes = document.getElementById("toplevel").getElementsByTagName("LI");
	for (i=0; i<navNodes.length; i++) {
		node = navNodes[i];
		node.onmouseover=function() {
				this.className+=" over";
			}
		node.onmouseout=function() {
				this.className=this.className.replace(" over", "");
 			}
  	}
 	}
}

window.onload=startList;