startList = function() {
  var dg = (document.getElementById) ? true : false;
  var da = (document.all) ? true : false;
  var wo = (window.opera) ? true : false;
  if (dg && da && (!wo)) {
    navRoot = document.getElementsByTagName("td");
    for (i=0; i<navRoot.length; i++) {
      node = navRoot[i];
      if (node.nodeName=="TD" && node.className=="i") {
        node.onmouseover=function() {
          this.className+=" over";
        }
        node.onmouseout=function() {
          this.className=this.className.replace(" over", " i");
        }
      }
    }
  }
}
window.onload=startList;
