//<![CDATA[

      // load the AJAX Feed API
      google.load("feeds", "1");

      function OnLoad() {

        // create a feed control
        var feedControl = new google.feeds.FeedControl();
		
		// set number of entries to display
		feedControl.setNumEntries(3);
		
		// set the location of the feeds
        feedControl.addFeed("http://community.penguin.com/service/searchEverythingAsRss.kickAction?as=150186&mediaType=blog&sortType=recent&includeBlog=on&username=PenguinNews&blogger=PenguinNews&quantity=5", "Penguin News (usa)");
        feedControl.addFeed("http://community.penguin.com/service/searchEverythingAsRss.kickAction?as=150186&mediaType=blog&sortType=recent&includeBlog=on&username=AuthorDesk&blogger=AuthorDesk&quantity=5", "The Author's Desk");
//         feedControl.addFeed("http://us.penguingroup.com/static/html/blogs/rss.xml", "The Penguin Blog");
       
       // set where the feeds is loaded, ie the name of the div layer
       feedControl.draw(document.getElementById("feedControl"));
      }
      google.setOnLoadCallback(OnLoad);
    //]]>

