poHover = function() {
	var poEls = document.getElementById("promotions").getElementsByTagName("LI");
	for (var i=0; i<poEls.length; i++) {
		poEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		poEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}

prHover = function() {
	var prroll = document.getElementById("promotions");
		prroll.onmouseover=function() {
			this.className+=" sfhover";
		}
		prroll.onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	
}

if (window.attachEvent) {	
	window.attachEvent("onload", poHover);
	window.attachEvent("onload", prHover);
}
