var TimeoutID = 0;
var HidingMenu = 0;

function Altos_Menu_Show(Index)
{
    if (TimeoutID != 0)
    {
        window.clearTimeout(TimeoutID);
        TimeoutID = 0;
        if (HidingMenu != Index)
        {
            Altos_Menu_Hide2(HidingMenu);
        }
    }

	obj = document.getElementById("Altos_Menu_Sub_" + Index);
	if (obj != null)
	{
		obj.style.left = document.getElementById("Altos_Menu_Main_" + Index).offsetLeft + "px";
		obj.style.display = "";
	}
}
function Altos_Menu_Hide(Index)
{
    HidingMenu = Index;
    TimeoutID = window.setTimeout("Altos_Menu_Hide2(" + HidingMenu + ")", 300);
}
function Altos_Menu_Hide2(Index)
{
	obj = document.getElementById("Altos_Menu_Sub_" + Index);
	if (obj != null)
	{
		document.getElementById("Altos_Menu_Sub_" + Index).style.display = "none";
	}
}

