<!--//
	function _init(){
if (document.all && document.getElementById) {
navRoot = document.getElementById("nav");
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.getElementById) { return; }
  var as = document.getElementsByTagName("A");
  for (var i=0; i< as.length; i++) {
    if (as[i].className.match(/img/)) {
      as[i].onclick=function(){return toggleMenu(this);};
    }
  }
	}
	//-->
	
	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 = "http://www.chancellor.mnscu.edu/images/opened.gif";
                    }else{
                    ulElement.className = "closed";
                    imgElement.src = "http://www.chancellor.mnscu.edu/images/closed.gif";
                    }
            }
    }
	
