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

	     function initialize() {

        var feedControl = new google.feeds.FeedControl();

		var feedControl2 = new google.feeds.FeedControl();

       // feedControl.addFeed("http://www.digg.com/rss/index.xml", "Digg");

	    

	   feedControl.addFeed("http://www.theglobeandmail.com/generated/rss/BN/Business.xml", "");

       //feedControl2.addFeed("http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml", "");

	   feedControl2.addFeed("http://rss.cnn.com/rss/cnn_topstories.rss", "");

	   

        feedControl.draw(document.getElementById("feedControl"));

		feedControl.setLinkTarget(google.feeds.LINK_TARGET_BLANK);

		

		feedControl2.draw(document.getElementById("feedControl2"));

		feedControl2.setLinkTarget(google.feeds.LINK_TARGET_BLANK);

      }

      google.setOnLoadCallback(initialize);