// JavaScript Document

 // load the AJAX Feed API
      google.load("feeds", "1");

      function OnLoad() {
	  

        // create a feed control
        var feedControl = new google.feeds.FeedControl() ;
		

        feedControl.addFeed("http://www.estadao.com.br/rss/manchetes.xml", "Estadão");
        feedControl.addFeed("http://feeds.folha.uol.com.br/emcimadahora/rss091.xml", "Folha");
        feedControl.addFeed("http://www.lancenet.com.br/export/rss/noticias.xml", "Lance!");
        feedControl.addFeed("http://blogs.estadao.com.br/jt-cidades/feed/", "Jornal da Tarde");
		feedControl.addFeed("http://www.agora.uol.com.br/agora/rss091.xml", "Agora");
		feedControl.addFeed("http://one.meiahora.com/rss/ultimas", "Meia Hora");
        
		feedControl.setLinkTarget(google.feeds.LINK_TARGET_BLANK);
        feedControl.setNumEntries(4);
        feedControl.draw(document.getElementById("feedControl"), 
                         {drawMode : google.feeds.FeedControl.DRAW_MODE_TABBED});

		
		
      }
	  google.setOnLoadCallback(OnLoad);
	  
	  
    //]]>
