google.load('feeds', '1');

function OnLoad() {
  var feeds = [
	{
	  title: 'Estadao',
	  url: 'http://economia.estadao.com.br/EN/rss/ultimas.xml'
	},
	{
	  title: 'Valor Online',
	  url: 'http://feeds.feedburner.com/valoronline/financas?format=xml'
	},
	{
	  title: 'UOL',
	  url: 'http://rss.noticias.uol.com.br/economia/ultnot/index.xml'
	},	
  ];

  var options = {
	stacked : true,
	horizontal : false,
	title : "Noticias"
  };

  new GFdynamicFeedControl(feeds, 'content', options);
  document.getElementById('content').style.width = "188px";
}

google.setOnLoadCallback(OnLoad);
