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

//window.onload = startList;

function fixH(one,two) {
  if (document.getElementById(one)) {
    var lh=document.getElementById(one).offsetHeight;
    var rh=document.getElementById(two).offsetHeight;
    var nh = Math.max(lh, rh);
    document.getElementById(one).style.height=nh+"px";
    document.getElementById(two).style.height=nh+"px";
  }
}

function onload(){ 
fixH('leftcol','content');
startList();
}