	<!--//


	startList = function() {
if (document.all && document.getElementById) {
navRoot = document.getElementById("navlist");
    if (!navRoot) { return; }
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", "");
   }
   }
  }
 }
 if (document.all && document.getElementById) {
navRoot = document.getElementById("aboutnavlist2");
    if (!navRoot) { return; }
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", "");
   }
   }
  }
 }
 	var backgroundSrcs = new Array("index1.jpg","index2.jpg","index3.jpg","index4.jpg","index5.jpg","index6.jpg","index7.jpg","index8.jpg","index9.jpg","index10.jpg","index11.jpg","index12.jpg","index13.jpg","index14.jpg","index15.jpg","index16.jpg","index17.jpg","index18.jpg","index19.jpg","index20.jpg","index21.jpg","index22.jpg","index23.jpg","index24.jpg","index25.jpg","index26.jpg","index27.jpg","index28.jpg","index29.jpg","index30.jpg","index31.jpg","index32.jpg","index33.jpg","index34.jpg","index35.jpg","index36.jpg","index37.jpg","index38.jpg","index39.jpg","index40.jpg","index41.jpg","index42.jpg","index43.jpg","index44.jpg","index45.jpg","index46.jpg","index47.jpg") 

{ 
//This line picks an image at random from the list you entered above 
var bgimage=backgroundSrcs[(Math.round(Math.random()*(backgroundSrcs.length-1)))] 
//This line applies the background image to your masthead 
//document.getElementById("masthead").style.background = "url('" + bgimage + "')"; 
} 
 
}

window.onload=startList;
	
		//-->
	
	
	function toggle(id){
    ul = "ul_" + id;
    img = "img_" + id;
    ulElement = document.getElementById(ul);
    imgElement = document.getElementById(img);
    if (ulElement){
            if (ulElement.className == 'closed'){
                    ulElement.className = "open";
                    imgElement.src = "images/opened.gif";
                    }else{
                    ulElement.className = "closed";
                    imgElement.src = "images/closed.gif";
                    }
            }
    }
	

	


	