// JavaScript Document

  startList = function() 
  {
    /* Determine if this is Internet Explorer */ 
    if (document.all&&document.getElementById) 
    {
	  /* This is Internet Explorer */ 
	  
	  /* Add mouse-over to MenuBar items */ 
      menuRoot = document.getElementById("FirstLevelMenu");
      for (i=0; i < menuRoot.childNodes.length; i++) 
  	  {
        menuRootChild = menuRoot.childNodes[i];
        if ((menuRootChild.nodeName=="LI") || (menuRootChild.nodeName=="li"))
	    {
		  /* Set first level menu mouse over functions */ 
          menuRootChild.onmouseover=function() { this.className+=" FirstLevelMenuOver"; }
		  menuRootChild.onmouseout=function() { this.className=this.className.replace(" FirstLevelMenuOver", ""); }
		  
		  /* Determine second level menus */ 
          for (j=0; j < menuRootChild.childNodes.length; j++) 
  	      {
            liChild = menuRootChild.childNodes[j];
            if ((liChild.nodeName=="UL") || (liChild.nodeName=="ul"))
			{
		      /* found second level menu */ 
    		  /* Determine second level menu choices */ 
              for (k=0; k < liChild.childNodes.length; k++) 
  	          {
        		/* Set second level menu mouse over functions */ 
                ulChild = liChild.childNodes[k];
                if ((ulChild.nodeName=="LI") || (ulChild.nodeName=="li"))
	    		{
				  /* Set second level menu mouse over functions */ 
				  ulChild.onmouseover=function() { this.className+=" SecondLevelMenuOver"; }
				  ulChild.onmouseout=function() { this.className=this.className.replace(" SecondLevelMenuOver", ""); }
	    	    }
		      }  			  
		    }
		  }  
        }
      }
    }
  }
  window.onload=startList;
