$(document).ready(function () {
    $("span.score").each(function () {
        var cat = $(this).attr("id").split("_")[1]
        $(this).load($("base").attr("href")+"system/weekly?cat=" + cat);
    })
});