sfHover = function() {
	var sfEls = document.getElementById("primenav").getElementsByTagName("LI");
	
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
			if (document.getElementById("rptrProducts_ctl00_hyplnkNew1"))
			{
			  document.getElementById("rptrProducts_ctl00_hyplnkNew1").style["display"]="none";
			}
			if (document.getElementById("rptrProducts_ctl00_hyplnkOnSale1"))
			{
			  document.getElementById("rptrProducts_ctl00_hyplnkOnSale1").style["display"]="none";
			}
			if (document.getElementById("rptrProducts_ctl00_hyplnkNewOnSale1"))
			{
			  document.getElementById("rptrProducts_ctl00_hyplnkNewOnSale1").style["display"]="none";
			}
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			if (document.getElementById("rptrProducts_ctl00_hyplnkNew1"))
			{
			  document.getElementById("rptrProducts_ctl00_hyplnkNew1").style["display"]="block";
			}
			if (document.getElementById("rptrProducts_ctl00_hyplnkOnSale1"))
			{
			  document.getElementById("rptrProducts_ctl00_hyplnkOnSale1").style["display"]="block";
			}
			if (document.getElementById("rptrProducts_ctl00_hyplnkNewOnSale1"))
			{
			  document.getElementById("rptrProducts_ctl00_hyplnkNewOnSale1").style["display"]="block";
			}
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
