startList = function() {
	

	if (document.all&&document.getElementById) {
		
	//		alert("hi");
		navRoot = document.getElementById("nav");
		divs = navRoot.getElementsByTagName("DIV");
    var lastBtn ;
    
   // alert(divs.length);
		for (i=0; i<  divs.length; i++) {
			node = divs[i];
				
		//	alert(node.nodeName+" "+node.className);
		
		  
		  
			if (node.className  == "btn"  || node.className  == "wbtn"  || node.className.indexOf(".btn")  ) {
				//alert("asdasd");

				lastBtn = node;
				node.onmouseover=function() {
				
					this.className+=" btnhover"; 
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" btnhover", "");
				}
			}
		}
	
		//window.status = "hi";
		//alert(""+lastBtn.innerHTML);
	}
}
window.onload=startList;

