﻿function showScratchTicket(id) {
    $.ajax({
        type: "POST",
        url: "/games/scratch/scratch.aspx",
        dataType: "application/x-www-form-urlencoded",
        data: "id=" + id,
        async: false,
        success: function(msg) { $(".featuredGames").slideUp("slow"); $(".scratchGame").slideUp("slow", function() { $(".scratchGame").html(msg).slideDown("slow", function() { $(".colorbox").colorbox(); }); }); }
    });
}
