﻿$(document).ready(function () {

    $("#SigningCountry").change(function () {
        var CountryId = $(this).val();
        window.location.href = 'SigningList.aspx?CountryId=' + CountryId;
    });

    $("#GameScheduleCountry").change(function () {
        var CountryId = $(this).val();
        window.location.href = 'GameResult.aspx?CountryId=' + CountryId;
    });

    $("#Standings").change(function () {
        var StandingsId = $(this).val();
        window.location.href = 'Default.aspx?StandingsId=' + StandingsId;

    });

    BlinkElement($('a.RegisterNow'), 30, 500, 0);

});




