startList = function() {
	if (document.all && document.getElementById && !window.opera) {
		navRoot = document.getElementById("TopNav");
		node = navRoot.getElementsByTagName("LI");
		for (i = 0; i < node.length; i++) {
			node[i].onmouseover = function() {
				this.className += " over";
			}
			node[i].onmouseout = function() {
				this.className = this.className.replace(" over", "");
			}
		}
	}
}

window.onload = startList;



