/*

 menu.js
 
 by Paul G. Anderson
 2007-07-14
 for Dr. David Pagnanelli

*/

var IE = document.all?true:false;

function hideSubMenus() {
 var obj=document.getElementById("menu").getElementsByTagName("li");
 for (i=0; i<obj.length; i++) {
    obj[i].className = "hide";
    obj[i].onmouseover = function() {
      this.className = "show";
    }
    obj[i].onmouseout = function() {
      this.className = "hide";
    }
  }
}



