//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="#C4DAEC";
	tabla.style.fontWeight="bold";
	tabla.style.color="#2B7AC1";

	if (document.all) {

		tabla.style.cursor="hand";

	} else {

		tabla.style.cursor="pointer";

	}	

}



function Out(tabla) {

	tabla.style.backgroundColor="#D1E2F0";
	
	tabla.style.fontWeight="normal";

	tabla.style.cursor="default";

}



function Entrar(tabla) {

	tabla.style.backgroundColor="#b1e418";
	tabla.style.fontWeight="bold";
	tabla.style.color="#ffffff";
	

	if (document.all) {

		tabla.style.cursor="hand";

	} else {

		tabla.style.cursor="pointer";

	}	

}



function Salir(tabla) {

	tabla.style.backgroundColor="#99CC01";
	tabla.style.fontWeight="normal";
	tabla.style.color="#ffffff";

	tabla.style.cursor="default";

}

