// JavaScript Document

show = function(id) {
	if (!document.getElementById) return false;
	if (!document.getElementById(id)) return false;
	var element = document.getElementById(id);
	element.style.display = 'block';
	return true;
}

hide = function(id) {
	if (!document.getElementById) return false;
	if (!document.getElementById(id)) return false;
	var element = document.getElementById(id);
	element.style.display = 'none';
	return true;
}

suckerFish = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("suckerfish");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" active";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" active", "");
   }
   }
  }
 }
}

window.onload = suckerFish;
