ieMenu = function(page) {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("divMenu");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			node.onmouseover=function() {
				this.className = "mnu-item hover";
			}
			node.onmouseout=function() {
				if (this.id != page) {
					this.className = "mnu-item";
				}
			}
		}
	}
}
