var games = {
    
    init: function()
    {
        $('div.scheduleDetail').hide();
        $('#gameScheduleIcons a.teamicon').click(function()
        {
            $('div.scheduleDetail').hide();
            $(this).next().fadeIn('slow');
            return false;
        });
        $('a.close').click(function()
        {
            $(this).parent().fadeOut('slow');
            return false;
        });
    }
}
$(document).ready(function()
{
    games.init();
});