// JavaScript Document
google.load("feeds", "1");
function OnLoad() {
var feedControl = new google.feeds.FeedControl();

feedControl.addFeed("http://rss.dailynews.yahoo.co.jp/fc/rss.xml", "トピックス");
feedControl.addFeed("http://rss.dailynews.yahoo.co.jp/fc/economy/rss.xml", "経済");
feedControl.addFeed("http://rss.dailynews.yahoo.co.jp/fc/entertainment/rss.xml", "エンタメ");
feedControl.addFeed("http://rss.dailynews.yahoo.co.jp/fc/sports/rss.xml", "Sports");
feedControl.addFeed("http://rss.dailynews.yahoo.co.jp/fc/computer/rss.xml", "IT");
feedControl.addFeed("http://rss.dailynews.yahoo.co.jp/fc/science/rss.xml", "科学");
　　　　　<!--表示したいエントリー数-->
        feedControl.setNumEntries(8);



　　　　　<!--リンクを別窓で開く場合を以下を挿入してください-->
        feedControl.setLinkTarget(google.feeds.LINK_TARGET_BLANK);

        feedControl.draw(
             document.getElementById("feedControl"),  {
             drawMode : google.feeds.FeedControl.DRAW_MODE_TABBED  });

      }

      google.setOnLoadCallback(OnLoad);
	  
    //]]>
