$(document).ready(function ()
{
    $('div.menu-section').hide();

    // transitions for menu sections
    var showing = 'menu-starters';
    var hash_pos = window.location.href.indexOf('#');
    if (hash_pos != -1)
    {
        var section = window.location.href.substring(hash_pos+1);
        if ($('#menu-'+section).size())
        {
            showing = 'menu-'+section;
        }
    }
    $('#'+showing).show();
    var comp = $('div.menu-content');
    var tabs = comp.find('ul.menu-sections-list');
    tabs.find('a').click(
        function (e)
        {
            e.preventDefault();
            var clicked = $(this).attr('href').substring(1);
            if (clicked != showing)
            {
                $('#'+showing).slideUp();
                $('#'+clicked).slideDown();
                $(tabs).find('a').removeClass('active');
                $(tabs).find('li.'+(clicked.substring(4))+' a').addClass('active');
                showing = clicked;
            }
        }
    );
});