﻿//var oCurrentSection = null;

//function showSection(sSectionID, sLinkID)
//{
//    hideAll();
//    document.getElementById(sSectionID).style.display = 'block';    
//    if(oCurrentSection != null)
//        oCurrentSection.className = 'noneSelectedSection'
//    
//    oCurrentSection = document.getElementById(sLinkID)
//    oCurrentSection.className = 'selectedSection'
//}
//function hideAll()
//{
//    document.getElementById('drinks').style.display = 'none';
//    document.getElementById('starters').style.display = 'none';
//    document.getElementById('salads').style.display = 'none';
//    document.getElementById('burgers').style.display = 'none';
//    document.getElementById('sandwiches').style.display = 'none';
//    document.getElementById('gamedayMenu').style.display = 'none';
//}

var _sOpenLinksID = "";
var _sCallingLinkID = "";
function showLinks(sLinkID, sCallingLinkID)
{
    if(_sOpenLinksID == sLinkID)
        return;
    else if(_sOpenLinksID != "")
        closeLinks();

    _sCallingLinkID = sCallingLinkID;
    _sOpenLinksID = sLinkID;

    $(sCallingLinkID).className = 'callOutSelected';
    $(sLinkID).appear();
    Effect.Grow(sLinkID)
}
function closeLinks()
{
    if(_sOpenLinksID == "")
        return;

    Effect.Shrink(_sOpenLinksID)
    $(_sCallingLinkID).className = 'callOut';

    _sOpenLinksID = "";
    _sCallingLinkID = "";
}