//This java script is used to Allow IE to perform the Drop down menus used on the main page. 
//Author Douglas Mueller, AVID Evolution, dmueller@onyx-networks.com
//Last updated: April 3rd, 2006
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace (" over", "");
   }
   }
  }
 }
}
window.onload=startList;