// JavaScript Document

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("DropM");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onclick=function() {
	if (this.className==" click"){
		this.className=this.className.replace(" click", "");
		}
	else {
		this.className+=" click";
		}
  }
   }
  }
 }
}
window.onload=startList;
