function ieHover(b) {
if (document.all&&document.getElementById) {
	rootArray = b.split(' ');
	for (i=0; i<rootArray.length; i++){
		id = rootArray[i];
		navRoot = document.getElementById(id);
		for (j=0; j<navRoot.childNodes.length; j++) {
			node = navRoot.childNodes[j];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
				this.className+=" over";
				}
				node.onmouseout=function() {
				this.className=this.className.replace
				(" over", "");
				}
			}
		}
	}
}
}