// JavaScript Document
window.onload=function()
{
var divs=document.getElementsByTagName("DIV");
for(n=0;n<divs.length;n++)
if (divs[n].className.toUpperCase() =="MENU")
{divs[n].className="menuClosed";
var openers=divs[n].getElementsByTagName("STRONG");
openers[0].onclick=toggleMenu;
}
}

function toggleMenu()
{
//First bit closes any currently open menu
//Remove down to ***** to allow multiple menus to be open
var menus=document.getElementsByTagName("DIV");
for(n=0;n<menus.length;n++)
if((menus[n].className.toUpperCase()=="MENUOPEN")&&
(menus[n]!=this.parentNode))
menus[n].className="menuClosed";
//*************************************

//This next bit actually does the opening
var menu=this.parentNode;
if (menu.className.toUpperCase()=="MENUCLOSED")
menu.className="MenuOpen";
else
menu.className="MenuClosed";
}

<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
