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