// menus.js

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("hoofdmenulist");
		addHover(navRoot.firstChild);
	}
}

function addHover(node) {
	do {
		if(node.nodeName && node.nodeName=="LI") {
			node.onmouseover=function() { this.className="iehover"; }
			node.onmouseout=function() { this.className=""; }
		}
		if(node.firstChild) {
			addHover(node.firstChild);
		}
	}
	while(node = node.nextSibling)
}

window.onload=startList;