﻿(function ($) {

    $.fn.GetSchedule = function () {

        $.ajax({
            type: "GET",
            contentType: "application/json; charset=utf-8",
            url: "/desktopmodules/gameslider/games.asmx/GetGames",
            dataType: "json",
            data: "{}",
            success: function (data) {},
            error: function (xhr, status, error) {}
        }); // end ajax call
    }

})(jQuery);
