startList = function() {
if (document.all&&document.getElementsByTagName) {
dlElems = document.getElementsByTagName("DL");
for (i=0; i<dlElems.length; i++) {
node = dlElems[i];
if (node.className=="contentmenu") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;