/* hover voor IE6 en lager */
startList = function() {
	if (document.all&&document.getElementById) {
		var menus = new Array('Navigation');
		for(var acounter = 0; acounter < menus.length; acounter++) {
			navRoot = document.getElementById(menus[acounter]).childNodes[1];
			for (var i=0; i < navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+=" hover";
					}
					node.onmouseout=function() {
						this.className=this.className.replace("hover", "");
					}
				}
			}
		}
	}
}
window.onload=startList; 