﻿/// <reference name="MicrosoftAjax.js"/>

MainMenuScripting =
{
    ShowHideNav: function(menuId)
    {
        var menu = $get(menuId);
        if (menu != null)
        {
            if (menu.style.display == 'none')
                menu.style.display = '';
            else
                menu.style.display = 'none';
        }
    }
}
if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();