function navOver(elName) {
	var overColor = new Array('#96B612', '#96B612', '#96CFD3', '#C9DB8F', '#E2A007', '#D4D631', '#96A394', '#CCCCCC', '#CCCCCC');
	var overdefaultcolor = "#96B612";

	if(document.all){
		if (elName=="menuInicio") { document.all[elName].style.backgroundColor = overColor[0]; }
		else if (elName=="menuExcursion1") { document.all[elName].style.backgroundColor = overColor[1]; }
		else if (elName=="menuExcursion2") { document.all[elName].style.backgroundColor = overColor[2]; }
		else if (elName=="menuExcursion3") { document.all[elName].style.backgroundColor = overColor[3]; }
		else if (elName=="menuActividades") { document.all[elName].style.backgroundColor = overColor[4]; }
		else if (elName=="menuVerano") { document.all[elName].style.backgroundColor = overColor[5]; }
		else if (elName=="menuTienda") { document.all[elName].style.backgroundColor = overColor[6]; }
		else if (elName=="menuContacto") { document.all[elName].style.backgroundColor = overColor[7]; }
		else if (elName=="menuTalleres") { document.all[elName].style.backgroundColor = overColor[8]; }
		else { document.all[elName].style.backgroundColor = overdefaultcolor; }
	}
	if(document.getElementById) {
		if (elName=="menuInicio") { document.getElementById(elName).style.backgroundColor = overColor[0]; }
		else if (elName=="menuExcursion1") { document.getElementById(elName).style.backgroundColor = overColor[1]; }
		else if (elName=="menuExcursion2") { document.getElementById(elName).style.backgroundColor = overColor[2]; }
		else if (elName=="menuExcursion3") { document.getElementById(elName).style.backgroundColor = overColor[3]; }
		else if (elName=="menuActividades") { document.getElementById(elName).style.backgroundColor = overColor[4]; }
		else if (elName=="menuVerano") { document.getElementById(elName).style.backgroundColor = overColor[5]; }
		else if (elName=="menuTienda") { document.getElementById(elName).style.backgroundColor = overColor[6]; }
		else if (elName=="menuContacto") { document.getElementById(elName).style.backgroundColor = overColor[7]; }
		else if (elName=="menuTalleres") { document.getElementById(elName).style.backgroundColor = overColor[8]; }
		else { document.getElementById(elName).style.backgroundColor = overdefaultcolor; }
	}
}
function navOut(elName,leftORright, indice) {
	var defaultColor = "#4B7000";
	var outColor = new Array('#96B612', '#96B612', '#96CFD3', '#C9DB8F', '#E2A007', '#D4D631', '#96A394', '#CCCCCC', '#CCCCCC');
	if(leftORright == "r")
		defaultColor = "#4B7000";
	if(document.all){
		if (indice>-1) { document.all[elName].style.backgroundColor = outColor[indice]; }
		else { document.all[elName].style.backgroundColor = defaultColor; }
	}
	if(document.getElementById) {
		if (indice>-1) { document.getElementById(elName).style.backgroundColor = outColor[indice]; }
		else { document.getElementById(elName).style.backgroundColor = defaultColor; }
	}
}
