$(function () {

    var tabContainers = $('div.block_games > div.block_games_inner');
    tabContainers.hide().filter(':first').show();
    $('div.block_games div.block_games_heading a').click(function () {
        tabContainers.hide();
        tabContainers.filter(this.hash).show();
        $('div.block_games div.block_games_heading a').removeClass('selected');
        $(this).addClass('selected');
        return false;
    }).filter(':first').click();


    var tabContainers1 = $('div.timetable_right > div.timetable_right_inner');
    tabContainers1.hide().filter(':first').show();
    $('div.timetable_right div.timetable_right_heading a').click(function () {
        tabContainers1.hide();
        tabContainers1.filter(this.hash).show();
        $('div.timetable_right div.timetable_right_heading a').removeClass('selected');
        $(this).addClass('selected');
        return false;
    }).filter(':first').click();

    


    var tabContainers_team = $('div.team_content');
    tabContainers_team.hide().filter(':first').show();

    $('div.team_heading a').click(function () {
        tabContainers_team.hide();
        tabContainers_team.filter(this.hash).show();
        $('div.team_heading a').removeClass('selected');
        $(this).addClass('selected');
        return false;
    }).filter(':first').click();


    

});

