
/*
*  How to use the Dynamic Feed Control, which has pretty UI already made for you!
*  Don't forget to check out the options:
*  http://www.google.com/uds/solutions/dynamicfeed/reference.html
*/

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

function OnLoad() {
  var feeds = [
    {
      title: 'Peoples TV',
              url: 'http://blog.peoples.it/cache_feed/tv.rss'
    },
    {
      title: 'Peoples Poker',
      url: 'http://blog.peoples.it/cache_feed/blog.rss'
    },
    {
      title: 'Peoples Bingo',
      url: 'http://blog.peoples.it/cache_feed/bingo.rss'
    }
  ];

  var options = {
        stacked : true,
        horizontal : false,
        title : "Peoples News",
        numResults : 2
    };



  new GFdynamicFeedControl(feeds, 'news-container', options);
  document.getElementById('news-container');
}

google.setOnLoadCallback(OnLoad);

