    google.load('feeds', '1');
    
    function OnLoad() {
      var feeds = [
        {
          title: 'Greenreport',
          url: 'http://www.greenreport.it/_new/index.php?page=rss'
        }
      ];
    
      var options = {
        horizontal : true,
        title : "."
      };
    
      new GFdynamicFeedControl(feeds, 'content', options);
    }
    
    google.setOnLoadCallback(OnLoad);

