startList = function() {

	if (document.all&&document.getElementById) {//inicio if
		
		navRoot = document.getElementById("navigation-1");
		
		for (i=0; i<navRoot.childNodes.length; i++) {//inicio for
			node = navRoot.childNodes[i];
			
			if (node.nodeName=="LI") {//inicio if interno
				//alert("one");
			  
			  node.onmouseover=function() {
				this.className+=" over";
			  }
			  
			  node.onmouseout=function() {
				this.className=this.className.replace(" over", "");
			  }
			
		    }//end if interno
		   
		}//end for
		
	 }//end if
 
 
	var elemClass = "navigation-2";
   	
	oSelect = document.getElementById("navigation-1");
	

   var call =oSelect.getElementsByTagName("ul");

   //var elements = new Array();
   for (var e = 0; e < call.length; e++){
       if (call[e].className == elemClass){
			for (i=0; i<call[e].childNodes.length; i++) {//inicio for
				node = call[e].childNodes[i];
				
				if (node.nodeName=="LI") {//inicio if interno
					//alert("two");
				  
				  node.onmouseover=function() {
					this.className+=" over";
				  }
				  
				  node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				  }
				
				}//end if interno
			   
			}//end for
	   }
          //elements[elements.length] = all[e];
   }
   
   
    
 
}
window.onload=startList;