<!--//


	startList = function() {
if (document.all && document.getElementById) {
navRoot = document.getElementById("nav");
    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("http://www.ctl.mnscu.edu/images/index1.jpg","http://www.ctl.mnscu.edu/images/index2.jpg","http://www.ctl.mnscu.edu/images/index3.jpg","http://www.ctl.mnscu.edu/images/index4.jpg","http://www.ctl.mnscu.edu/images/index5.jpg",  "http://www.ctl.mnscu.edu/images/index6.jpg","http://www.ctl.mnscu.edu/images/index7.jpg","http://www.ctl.mnscu.edu/images/index8.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";
                    }
            }
    }
	