// JavaScript Document

ns4 = (document.layers)? true:false; // netscape 4?
ie4 = (document.all)? true:false; // internet explorer 4/5?
ns6 = (ns4|ie4)? false:true; // (Netscape 6)

configuraMenu = function() {
/*	
	Calendar.setup({
		inputField     :    "llegada_fec",     // id of the input field
   	    //ifFormat       :    "%B %e, %Y",      // format of the input field
     	button         :    "llegada_sel",  // trigger for the calendar (button ID)
   		align          :    "Tl",           // alignment (defaults to "Bl")
    	singleClick    :    true
		});

    Calendar.setup({
        inputField     :    "partida_fec",     // id of the input field
	    //ifFormat       :    "%B %e, %Y",      // format of the input field
	  	button         :    "partida_sel",  // trigger for the calendar (button ID)
 		align          :    "Tl",           // alignment (defaults to "Bl")
	  	singleClick    :    true
		});

*/	
	if (document.all&&document.getElementById) {
	navRoot = document.getElementById("menuppal");
		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", "");}
   			}
		}
	}

	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("poblaciones");
		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=configuraMenu;
