
    /*
    *  How to use the Feed Control to grab, parse and display feeds.
    */
    
    google.load("feeds", "1");
    
    function OnLoad() {
      // Create a feed control
      var feedControl = new google.feeds.FeedControl();
    
      // Feeds go here.
      feedControl.addFeed("http://feeds2.feedburner.com/readwriteweb", "<h2>ReadWriteWeb:</h2>");
      feedControl.addFeed("http://feeds.arstechnica.com/arstechnica/BAaf", "Ars Technica:");
      feedControl.addFeed("http://feeds.wired.com/wired/index", "Wired News:");
      feedControl.addFeed("http://gizmodo.com/tag/top/index.xml", "Gizmodo:");
    
      // Draw it.
      feedControl.draw(document.getElementById("tech"));
    }
    
    google.setOnLoadCallback(OnLoad);