// taken from http://www.alistapart.com/articles/dropdowns

startList = function() {
if (document.all&&document.getElementById) {
listnavRoot = document.getElementById("listnav");
for (i=0; i<listnavRoot.childNodes.length; i++) {
node = listnavRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;

