//Se establecen los cambios de fondo que se producen en los menus al pasar el ratón por encima
//Entrar y salir para el menu principal
//In y Out para los menus secundarios

function In(tabla) {
	tabla.style.backgroundColor="#F2F39E";
	if (document.all) {
		tabla.style.cursor="hand";
	} else {
		tabla.style.cursor="pointer";
	}	
}

function Out(tabla) {
	tabla.style.backgroundColor="#CEF2B9";
	tabla.style.cursor="default";
}

function Entrar(tabla) {
	tabla.style.backgroundColor="#7E7E93";
	if (document.all) {
		tabla.style.cursor="hand";
	} else {
		tabla.style.cursor="pointer";
	}	
}

function Salir(tabla) {
	tabla.style.backgroundColor="#585876";
	tabla.style.cursor="default";
}