startList = function() {
	if (browser == "explorer" && browserVersion < 7) {
		if (document.all&&document.getElementById) {
			navRoot = document.getElementById("uk");
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+=" over";
						if (browser == "explorer" && browserVersion < 7) {
							document.getElementById("headnav").style.height = "400px";
						}
						//alert(this.innerHTML);
					}
					
					node.onmouseout=function() {
						this.className=this.className.replace(" over", "");
						if (browser == "explorer" && browserVersion < 7) {
							document.getElementById("headnav").style.height = "105px";
						}
						//alert(this.className);
					}
				}
			}
		}
	}
}


window.onload=startList;