﻿
function ToggleQuickLinks ()
{
    Effect.toggle('QuickLinks', 'blind');
    var titleBar = document.getElementById('QuickLinksTitle');
    if (titleBar != null)
    {
        if (titleBar.style.backgroundImage=="url(/Images/Common/arrow-down.gif)")
        {
            titleBar.style.backgroundImage="url(/Images/Common/arrow-right.gif)"
        }
        else
        {
            titleBar.style.backgroundImage="url(/Images/Common/arrow-down.gif)"
        }
    }
}

function SetupQuickLinksExpander ()
{
    var ql = document.getElementById('QuickLinksLink');
    if (ql != null)
    {
        ql.href="javascript:ToggleQuickLinks()";
    }
}

function HideQuickLinksByDefault ()
{    
    var qlc = document.getElementById('QuickLinks');
    if (qlc != null)
    {
        qlc.style.display="none";
    } 
}

/**
* Initialise the JS functionality on the page.
*/
function RS_Init ()
{
    HideQuickLinksByDefault();
    SetupQuickLinksExpander();
}
