/* ******************************************************************************************************************************************************** */
/* common.js   - This file (page) stores all the common javascript elements that are used throughout the Lobbyist Registration              */
/* 		system.   This file is stored in the 'TEMPLATE - LRO Common Elements' design template.   WARNING - only edit      */
/*		this file in that template.   All the other templates inherit from this common template.   Editing the file in one of these      */
/* 		databases will only mean your changes will be overwritten the next time a design refresh is run.                                         */
/* ******************************************************************************************************************************************************** */
/* ****************************************************************************************************** */
/* The following is for the vertical menu */
/* ***************************************************************************************************** */
navHover = function() {
 var lis = document.getElementById("navmenu-v").getElementsByTagName("LI");
 for (var i=0; i<lis.length; i++) {
  lis[i].onmouseover=function() {
   this.className+=" iehover";
  }
  lis[i].onmouseout=function() {
   this.className=this.className.replace(new RegExp(" iehover\\b"), "");
  }
 }
}
if (window.attachEvent) window.attachEvent("onload", navHover);

