﻿jQuery(window).load(function() {
    jQuery.getFeed({
        url: "blog/?feed=rss2",
        success: function(feed) {
            jQuery("#feeds").html("");
            jQuery.each(feed.items, function() {
                jQuery("#feeds").append("<div class=\"rightbox_content\"><a href=\"" + this.link + "\">" + this.title + "</a></div>");
            });
        }
    });
});