<!--//--><![CDATA[//><!--
var prev = new Object();
// modified to simply "refresh" the className
sfHover = function() {
	var mainEl = document.getElementById("ieHoverFix");
	if (mainEl == undefined) { return; }
	var sfEls = mainEl.getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			prev.className+=" ";
			prev.className=prev.className.substring(1,-1);
			this.className+=" ";//" previewHover";
			prev = this;
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.substring(1,-1);//.replace(new RegExp(" previewHover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

//--><!]]>