<!--
startList = function() {
  if (document.all&&document.getElementById) {
	navRoot = document.getElementById("main");
	for (i=0; i<navRoot.childNodes.length; i++) {
	  node = navRoot.childNodes[i];
 	  if (node.nodeName=="LI" && node.className=="ddm") {
	    node.onmouseover=function() {
	      this.className+=" over";
	      this.style.cursor = "pointer";
	    }
		node.onmouseout=function() {
		  this.className=this.className.replace(" over", "");
		  this.style.cursor = "";
	    }
	  }
	}
	navRoot = document.getElementById("about");
	for (i=0; i<navRoot.childNodes.length; i++) {
	  node = navRoot.childNodes[i];
 	  if (node.nodeName=="LI" && node.className=="ddm2") {
	    node.onmouseover=function() {
	      this.className+=" over2";
	      this.style.cursor = "pointer";
	    }
		node.onmouseout=function() {
		  this.className=this.className.replace(" over2", "");
		  this.style.cursor = "";
	    }
	  }
	}
  }
}

