﻿startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		nodez=navRoot.getElementsByTagName("dd");
		
		for (i=0; i<nodez.length; i++) {
			node = nodez[i];
			//alert(node.nodeName);
			//if (node.nodeName=="DD") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			//}
		}
	}
}

function popupWin(page){
	window.open(page, "popdoc", "height=400,width=600,status=no,toolbar=no,directories=no,menubar=no,location=no,resizable=no,scrollbars=no");
}

window.onload= function(){
	startList();
}