function get_blog_feed( baseurl, container, limit ) {
        $(container).html("<li>Getting feed... <img src='/images/loading.gif' height='24px' /></li>");
        $.ajax({
            url: baseurl + "/api/read/json",
            data: {},
            method: "GET",
            cache: false,
            dataType: "jsonp",
            success: function (json_data) {
                $(container).html("");

                //<li><span>04.26.2010</span><a href="#">Decisions Beta Launches</a></li>
                // Build the entries
                var li = undefined, date = undefined, html = undefined, title = undefined;
                if (json_data.posts.length < limit) limit = json_data.posts.length;
                for (var i = 0; i < limit; i++) {
										if (json_data.posts[i]['regular-title']!=null)
											  title = json_data.posts[i]['regular-title'];
										else if (json_data.posts[i]['link-text']!=null)
											  title = json_data.posts[i]['link-text'];
										else
											  title = json_data.posts[i].slug.replace(/\-/gi, " ").replace(/\b[a-z]/g, function(letter) { return letter.toUpperCase(); });
                    li = $("<li />");
                    date = new Date(json_data.posts[i].date);
                    html = (date.getMonth() + 1) + "." + date.getDate() + "." + date.getFullYear();
                    $("<span />", { html: html }).appendTo(li);
                    $("<a />", { href: json_data.posts[i].url, target: "_blank", rel: "external follow", html: title }).appendTo(li);
                    li.appendTo(container);

                }
            }
        })
}

