var logger = new Logger( Logger.info );
var tabBar;
var slideShow;

$(
    function()
    {
        // Initialize the tab bar.
        var tabBarOptions =
            {
                // Defines each tab in the tab bar. In particular, the URL we fetch the tab's
                // contents from and handlers that we execute when we display and remove the
                // tab's contents.
                tabs:
                {
                    tabCalendar:
                    {
                        url: "calendar.html"
                    },
                    tabBarbBlog:
                    {
                        url: "barb-blog.html"
                    }
                }
            };
        tabBar = new TabBar( "#mainTabBar", "#content", tabBarOptions );
    }
);
