// JavaScript Document
/*over = function() {
	var sfEls = document.getElementById("nav","subnav","ternav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" over";
			} 
			sfEls[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" over\\b"), "");
			} 
		} 
	} 
	
if (window.attachEvent) window.attachEvent("onload", over);

overlaw = function() {
	var sfEls = document.getElementById("lawnav","subnav","ternav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" overlaw";
			} 
			sfEls[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" overlaw\\b"), "");
			} 
		} 
	} 
	
if (window.attachEvent) window.attachEvent("onload", overlaw);*/


sfHover = function() {
	var sfEls = document.getElementById("suckerfishnav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
