// JavaScript Document
//Suckerfish based script
sfHoverMenu = function() {
	var sfEls = document.getElementById("menu").getElementsByTagName("td");
	for ( var i in sfEls ) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}

/*
 * --------------------------------------------------------------------------------
 * The following line must appear before the </head> tag in the page displaying 
 * the suckerfish menu:
 *
if (window.attachEvent) window.attachEvent("onload", sfHover);
 *
 * --------------------------------------------------------------------------------
 */
