$(document).ready(function(){
	fetchFeed('http://imagens.globoradio.globo.com/cbn/rss/programas/cbnbrasil.xml', '#feedContent1');
	fetchFeed('http://www.stf.jus.br/portal/RSS/noticiaRss.asp?codigo=1', '#feedContent2');
	fetchFeed('http://ext02.tst.jus.br/pls/no01/NO_NOTICIASNOVO.rss?p_cod_area_noticia=ASCS', '#feedContent3');
		
});

function fetchFeed(url, id){
	$.jGFeed(url, 
		function(feeds){
			if(!feeds){
				alert('there was an error');
			}
			for(var i=0;i<feeds.entries.length;i++){
				var entry = feeds.entries[i];
				var title = entry.title;
				var link = entry.link;
				var description = entry.contentSnippet;
				var pubDate = entry.publishedDate;
				
				
				var html = "<p><a href='" + link + "' target='_blank'>" + title + "</a></p>"
				
				$(id).append($(html));
			}
		}, 1);	
}


