// JavaScript Document

starttopList = function() {
if (document.all&&document.getElementById) {
tnavRoot = document.getElementById("tnav");
for (j=0; j<tnavRoot.childNodes.length; j++) {
tnode = tnavRoot.childNodes[j];
if (tnode.nodeName=="LI") {
tnode.onmouseover=function() {
this.className+=" tover";
  }
  tnode.onmouseout=function() {
  this.className=this.className.replace(" tover", "");
   }
   }
  }
 } 
}

window.onload=starttopList;