IEHover = function() {	


	if (document.all || document.getElementById) {
		
		navRoot = document.getElementById("nav");
		
		for (i=0; i<navRoot.childNodes.length; i++) {
		  node = navRoot.childNodes[i];
			  if (node.nodeName=="LI") {
			  node.onmouseover=function() {
				this.className+=" over";
			  }
			  node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
			  }
		  }
		}

	
		
	pnavigation = document.getElementsByClassName("menuparent");
	for (i=0;i<pnavigation.length;i++) {
			pnavigation[i].onmouseover=function() {
				Element.addClassName(this, "over");
			}
			pnavigation[i].onmouseout=function() {
				Element.removeClassName(this, "over");
			}
	}
		

		productCategoryRoot = document.getElementById("product-category-summary");
		if (!productCategoryRoot) {
		}
		else {
			for (i=0; i<productCategoryRoot.childNodes.length; i++) {
			  node = productCategoryRoot.childNodes[i];
				  if (node.nodeName=="LI") {
				  node.onmouseover=function() {
					this.className+=" over";
				  }
				  node.onmouseout=function() {
						this.className=this.className.replace(" over", "");
				  }
			  }
			}
		}
		
		allCategoryRoot = document.getElementById("all-product-categories");
		if (!allCategoryRoot) {
		}
		else {
			for (i=0; i<allCategoryRoot.childNodes.length; i++) {
			  node = allCategoryRoot.childNodes[i];
				  if (node.nodeName=="LI") {
				  node.onmouseover=function() {
					this.className+=" over";
				  }
				  node.onmouseout=function() {
						this.className=this.className.replace(" over", "");
				  }
			  }
			}
		}
		
			
		buttons = document.getElementsByClassName("button");		
		for (i=0; i<buttons.length; i++) {
			buttons[i].onmouseover=function() {
				this.className+=" over";
			}
			buttons[i].onmouseout=function() {
					this.className=this.className.replace(" over", "");
			}
		}
		
	 }
}
Event.observe(window, "load", IEHover, false);
