function showFeed(divid, widget) {
	$.ajax({
		url : widget,
		cache : false,
		success : function(html) {
			$("#" + divid).html(html);
		}
	});
}
