﻿$.ajaxSetup({
    // Disable caching of AJAX responses */
    cache: false
});

$(document).ready(function() {
    ajaxFeeds();
});

function ajaxFeeds() {
    $('.extfeed[id]').each(function() {
        $(this).load("/Feed" + ($(this).hasClass('mod') ? "Module" : "") + "/" + $(this).attr("id") + "/feed.html");
    });
}
