google.load("feeds", "1");
    
    function OnLoad() {
      // Create a feed control
      var feedControl = new google.feeds.FeedControl();
	  
	  feedControl.setNumEntries("4");
	  feedControl.setLinkTarget(google.feeds.LINK_TARGET_BLANK);
	  
    
      // Add two feeds.
      feedControl.addFeed("http://www.jutarnji.hr/rss", "Jutarnji.hr");
      feedControl.addFeed("http://www.index.hr/najnovije/rss.ashx", "Index.hr");
	  feedControl.addFeed("http://www.vecernji.hr/index.php?cmd=show_rss&tip=novo", "Vecernji.hr");
	  feedControl.addFeed("http://www.tportal.hr/rss/naslovnicarss.xml", "tportal");
	  feedControl.addFeed(" http://www.net.hr/rss/feeds/naslovnica/index.xml", "Net.hr");
	  feedControl.addFeed("http://www.javno.com/rss/javno.xml", "Javno.hr");
	  feedControl.addFeed("http://www.24sata.hr/index.php?cmd=show_rss&action=novo", "24sata");
	  feedControl.addFeed("http://dnevnik.hr/rss/", "Dnevnik.hr");
	  feedControl.addFeed("http://www.slobodnadalmacija.hr/RssTop.aspx", "Slobodna Dalmacija");
	  feedControl.addFeed("http://www.mup.hr/rss.asp?zone=halo", "HALO policija");
	  feedControl.addFeed("http://zet.hr/data/rss/novosti.xml", "ZET");
	  feedControl.addFeed("http://www.emsc-csem.org/rss.php", "EMSC - zadnji potresi");
	  
	  
	 

	  
	  
    
      // Draw it.
      feedControl.draw(document.getElementById("content"));
    }
    
    google.setOnLoadCallback(OnLoad);
