function overMenu(item)
{
	item.style.cursor="pointer";
	item.style.backgroundColor= "#c4d8e6";//#b5cedf
	item.style.color = "black"; //fuente de seleccion

}
function outMenu(item)
{
	item.style.backgroundColor= "#387aa7"; // color original
	item.style.color = "white"; //fuente original
}

function mostrarSubMenu(item,subMenu)
{
	item.style.backgroundColor= "#c4d8e6"; // color de seleccion
	item.style.color = "black"; //fuente de seleccion
    document.getElementById(subMenu).style.visibility="visible";
}

function ocultarSubMenu(item,subMenu)
{
	item.style.backgroundColor= "#387aa7"; // color original
	item.style.color = "white"; //fuente original
    document.getElementById(subMenu).style.visibility="hidden";
}

function cambiaCursor(objeto)
{
	objeto.style.cursor="pointer";
}

function redir(direccion)
{
	location.href = direccion;
}