startList = function() {
	if (document.all&&document.getElementById) {
		dropNav = document.getElementById("navContainer");
		//alert(dropNav.childNodes.length); // degugging only
		for (i=0; i<dropNav.childNodes.length; i++) {

			node = dropNav.childNodes[i];

			for (n=0; n<node.childNodes.length; n++){
				liNode = node.childNodes[n];

				if (liNode.nodeName=="LI") {
					liNode.onmouseover = function() {
						this.className += " open";
					}
					liNode.onmouseout = function() {
						this.className = this.className.replace(" open", "");
					}
				}
			}
		}
	}
}
window.onload=startList;
