$(function(){
	var ul = $("<ul></ul>");
	$.getJSON(urlbase+"feeds", function(response){
		$(response).each(function(i,j){
			title = $("<p></p>").addClass("title").append($("<a></a>").attr("href",j.link).attr("title",j.title).html(j.title));
			$(ul).append($("<li></li>").append(title));
		});
		$(".feedsBox p.loadingFeeds").replaceWith(ul);
	});
});