function overLeft(obj)
{
	obj.bgColor = "#33ccff";
	//obj.bgColor = "LightGoldenrodYellow";
	obj.style.color="black";
	return true;
}
function outLeft(obj)
{
	obj.bgColor = "#336699";
	//obj.bgColor = "orange";
	obj.style.color="white";
	return true;
}

function navegar_submenu(Itemx)
{
    if (Itemx.style.display == "none")
	    {
	    Itemx.style.display = "";
	    }
	else
		{
	    Itemx.style.display = "none";
	    }
}

function VerFlecha(Flecha, Opcion)
{
    if (Opcion == "true")
	    {
	    Flecha.style.visibility = "visible";
	    }
	else
		{
	    Flecha.style.visibility = "hidden";
	    }
}

function overMenuPadre(obj, Itemx)
{
	obj.bgColor = "#33ccff";
	obj.style.color="black";
	hijo1.style.color="black";
	hijo2.style.color="black";
}

function outMenuPadre(obj)
{
	obj.bgColor = "#336699";
	obj.style.color="white";
	hijo1.style.color="white";
	hijo2.style.color="white";
}
