/*
*  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: 'ひかりＴＶ SOCCER',
      url: 'http://pub.ne.jp/sc_information/?action=rss'
    }
  ];

  var options = {
    horizontal : true,
    numResults : 10,
    title : "ひかりＴＶ"
  };

  new GFdynamicFeedControl(feeds, 'feedControl', options);
}

google.setOnLoadCallback(OnLoad);