google.load("feeds", "1"); function OnLoad() { // Create a feed control var feedControl = new google.feeds.FeedControl(); feedControl.setNumEntries(1); // Add two feeds. feedControl.addFeed("http://www.michigan.gov/rss/0,2348,7-192-34759--31981-,00.xml"); feedControl.addFeed("http://www.crainsdetroit.com/apps/pbcs.dll/section?category=rss01&mime=xml"); feedControl.addFeed("http://upnorthbusiness.wordpress.com/feed/"); // Draw it. feedControl.draw(document.getElementById("rss")); } google.setOnLoadCallback(OnLoad);