function ShowMenu(id)
{
    if ($("#header").attr("currenMenu") != "" && $("#header").attr("currenMenu") != id)
    {
        $($("#header").attr("currenMenu")).fadeOut('slow');
    }
    $(id).fadeIn('fast');
    $("#header").attr("currenMenu", id);
}

function HideMenu()
{
    $("#header").bind("mouseleave", function()
        {
            if ($("#header").attr("currenMenu") != "")
            {
                $($("#header").attr("currenMenu")).fadeOut('slow');
                $("#header").attr("currenMenu", "");
            }
        });
    $("#header").attr("currenMenu", "");
}

function ToggleMenu(id)
{
    if ($(id).css("display") != "none")
    {
        $(id).fadeOut('fast');
    }
    else
    {
        $(id).fadeIn('fast');
    }
}

function EnsureVisibleRightMenu()
{
    $("#rightMenu").css("top", 100 + document.documentElement.scrollTop);
}