startList = function() {	if (document.all && document.getElementById && document.getElementsByTagName) {		var list_items = document.getElementById("nav").getElementsByTagName('LI');		for (i = 0; i < list_items.length; i++) {			node = list_items[i];			node.onmouseover=function() {				this.className += " over";			}			node.onmouseout=function() {				this.className = this.className.replace(" over", "");			}		}	}}window.onload=startList;