	<!--//
	startlist = function() {
if (document.all && document.getElementById) {
navRoot = document.getElementById("navMain");
    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", "");
   }
   }
  }
 }	
 }
 
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 = "/includes/images/footer/opened.png";
                    }else{
                    ulElement.className = "closed";
                    imgElement.src = "/includes/images/footer/closed.png";
                    }
            }
    }	
