window.onload = function(){
	document.navegar.style.backgroundPosition = "-100px top";
	document.navegar.nosotros.onmouseover = function(){
		document.navegar.style.backgroundPosition = "314px top";
	}
	document.navegar.productos.onmouseover = function(){
		document.navegar.style.backgroundPosition = "414px top";
	}
	document.navegar.ubicacion.onmouseover = function(){
		document.navegar.style.backgroundPosition = "516px top";
	}
	document.navegar.galeria.onmouseover = function(){
		document.navegar.style.backgroundPosition = "618px top";
	}
	document.navegar.contacto.onmouseover = function(){
		document.navegar.style.backgroundPosition = "720px top";
	}
	
	document.navegar.galeria.onmouseout = document.navegar.nosotros.onmouseout = document.navegar.productos.onmouseout = document.navegar.ubicacion.onmouseout = document.navegar.contacto.onmouseout = function(){
		document.navegar.style.backgroundPosition = "-100px top";
	}
	
	
	switch(valorSeccion){
		case 1: document.getElementById("activoMenu").style.backgroundPosition = "314px top"; break;
		case 2: document.getElementById("activoMenu").style.backgroundPosition = "414px top"; break;
		case 3: document.getElementById("activoMenu").style.backgroundPosition = "516px top"; break;
		case 4: document.getElementById("activoMenu").style.backgroundPosition = "618px top"; break;
		case 5: document.getElementById("activoMenu").style.backgroundPosition = "720px top"; break;
		case 6: document.getElementById("activoMenu").style.backgroundPosition = "-100px top"; break;
		default: document.getElementById("activoMenu").style.backgroundPosition = "-100px top"; break;
	}
	
	seccionLoad();
}
