startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("navmenu");
		for (i=0; i<navRoot.childNodes.length; i++) {
			prev_node = navRoot.childNodes[i-1];
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					// alert('testing only.');
					this.className+=" over";
				}
				node.onkeydown=function() {
					//alert(event.keyCode);
					//this.className+=" over";
				}
				node.onkeyup=function() {
					if ((event.keyCode == 27 || event.charCode == 27) || event.which == 27){
						this.className=this.className.replace(" over", "");
					} else if ((event.keyCode == 9 || event.charCode == 9) || event.which == 9){
						this.className+=" over";
					}
				}
				node.onkeypress=function() {
					if ((event.keyCode == 27 || event.charCode == 27) || event.which == 27){
						this.className=this.className.replace(" over", "");
					} else if ((event.keyCode == 9 || event.charCode == 9) || event.which == 9){
						this.className+=" over";
					}
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

