
  // Suckerfish Menu System... Standards compatible browsers don't need this code.  Only M$IE requires it, because apparently billions of dollars can't buy you a decent browser.  You can only get that kind of thing for free.
	<!--//--><![CDATA[//><!--
	sfHover = function() {
		var sfEls = document.getElementById("nav").getElementsByTagName("LI");
		for (var i=0; i<sfEls.length; i++) {
			sfEls[i].onmouseover=function() {
			  var siblings = document.getElementById("nav").getElementsByTagName("LI");
				//Turn off all of your siblings' menus.
				for (var j=0; j < siblings.length; j++) {
			    siblings[j].className=this.className.replace(new RegExp(" sfhover\\b"), "");
			  }
			  //Turn on your own menu
				this.className+=" sfhover";
			}
			sfEls[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			}
		}
	}
	if (window.attachEvent) window.attachEvent("onload", sfHover);

	//--><!]]>

