﻿//<![CDATA[

      google.load("feeds", "1");

      function OnLoad() {
        var feedControl = new google.feeds.FeedControl();

        feedControl.addFeed("http://dailynews.yahoo.co.jp/fc/local/rss.xml", "総合ニュース");        
        feedControl.addFeed("http://zasshi.news.yahoo.co.jp/rss/health.xml", "健康");
        feedControl.addFeed("http://pipes.yahoo.com/pipes/pipe.run?FeedType=rss&Keyword=妊娠 +|+ 出産 &Number=10&_id=7eff3b9fc6a1fddb4dce367808e0d037&_render=rss", "妊娠・出産");
        feedControl.addFeed("http://pipes.yahoo.com/pipes/pipe.run?FeedType=rss&Keyword=子育て&Number=10&_id=7eff3b9fc6a1fddb4dce367808e0d037&_render=rss", "子育て");



　　　　<!--表示したいエントリー数-->
        feedControl.setNumEntries(5);

　　　　　<!--リンクを別窓で開く場合を以下を挿入してください-->
        feedControl.setLinkTarget(google.feeds.LINK_TARGET_BLANK);

        feedControl.draw(
             document.getElementById("feedControl"),  {
             drawMode : google.feeds.FeedControl.DRAW_MODE_TABBED  });
      }

      google.setOnLoadCallback(OnLoad);
//]]>
