$(document).ready(function () {
    //Open all links with rel="external" in new window
    jQuery('a[rel="external"]').click(function () {
        window.open($(this).attr('href'));
        return false;
    });

    $('#sports_table tr:odd').addClass('odd');
    $('#fixtures_table tr:odd').addClass('odd');

    $("#main-content .box:first").addClass("no-border");

    $('#society > a,#membership > a,#sport > a').click(function () {
        return false;
    });
});
