/*

######################################################

Soluciones Integrales en Capacitacion S.A. de C.V.
Fecha de creacion: 24/Abril/2007
Autor: Carlos Garcia V.
Descripcion:

Funciones de script para activar el cambio de color
de los elementos del menu al pasar y retirar el mouse
encima de ellos.

######################################################

*/

function cambiaFondo(id) {
		
	var elementotd = document.getElementById(id);
	elementotd.style.backgroundColor = "#adcdff";	//COLOR DE FONDO PARA EL ELEMENTO ACTIVO.
}

function cambiaFondoNormal(id) {
		
	var elementotd = document.getElementById(id);
	elementotd.style.backgroundColor = "#dde3ec";	//COLOR DE FONDO PARA EL ELEMENTO SIN ACTIVARSE.
}