﻿// Handles injecting the Ad Fed sponsors into the sidebar wherever the
// sponsors module appears on a page.
//
(function ($) {
    function insertSponsorsModule() {
        var container = $('.sponsors-container');
        if (container.length > 0) {
            $.ajax({
                url: '/sponsors/Partial.aspx',
                success: function (response, status, xhr) {
                    container.append(response);
                }
            });
        }
    }

    $(document).ready(insertSponsorsModule);
})(jQuery);
