<!-- 
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	var i;
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
      if (this.className.search(/first/i)>0)
      {
     		this.className+=" sfhoverfirst";
      }
      else if (this.className.search(/last/i)>0)
      {
     		this.className+=" sfhoverlast";
      }
      else
      {
     		this.className+=" sfhover";			 
      }
		}
		sfEls[i].onmouseout=function() {
		
		  /*if (i==0) {
		  	this.className=this.className.replace(new RegExp(" firstact\\b"), "");
			}
			else {    */
				this.className=this.className.replace(new RegExp(" sfhoverlast\\b"), "");		
				this.className=this.className.replace(new RegExp(" sfhoverfirst\\b"), "");			
		  	this.className=this.className.replace(new RegExp(" sfhover\\b"), "");			
      //}
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
-->
