  google.load("feeds", "1");
  function OnLoad() {
    var feedControl = new google.feeds.FeedControl();
	feedControl.addFeed("http://headlines.yahoo.co.jp/rss/rps_dom.xml", "国内");
	feedControl.addFeed("http://headlines.yahoo.co.jp/rss/rcdc_cn.xml", "海外");  
    feedControl.addFeed("http://headlines.yahoo.co.jp/rss/fsi.xml", "経済");
	feedControl.addFeed("http://headlines.yahoo.co.jp/rss/ent-yonh.xml", "エンターテインメント");
	feedControl.addFeed("http://headlines.yahoo.co.jp/rss/spnavi.xml", "スポーツ");
	feedControl.addFeed("http://headlines.yahoo.co.jp/rss/bcn.xml", "テクノロジー");
    feedControl.setLinkTarget(google.feeds.LINK_TARGET_BLANK);
    feedControl.setNumEntries(20);
    feedControl.draw(document.getElementById("feedControl"),
	{drawMode : google.feeds.FeedControl.DRAW_MODE_TABBED});
  }
  google.setOnLoadCallback(OnLoad);
