google.load("feeds", "1");

function initialize() {
  var feedControl = new google.feeds.FeedControl();
	feedControl.setNumEntries(1);
feedControl.addFeed("http://feedblog.ameba.jp/rss/ameblo/firstchildrenyas/rss20.xml", "yasのブログ 佐藤康弘");
feedControl.addFeed("http://feedblog.ameba.jp/rss/ameblo/ironcrowyuji/rss20.xml", "原祐司");
feedControl.addFeed("http://zappe-blog.seesaa.net/index.rdf", "ザッペBLOG");
feedControl.addFeed("http://sbn.japaho.com/sbn/blog/cvb/rss.html", "C.V.Bのブログ");
feedControl.addFeed("http://feedblog.ameba.jp/rss/ameblo/yasuaki0616/rss20.xml", "キャシャーンのブログ"); 

feedControl.addFeed("http://feedblog.ameba.jp/rss/ameblo/yuma-0602/rss20.xml", "小川ユーマのブログ"); 
feedControl.addFeed("http://feedblog.ameba.jp/rss/ameblo/mathmathdsk/rss20.xml", "江渕大輔のブログ"); 
feedControl.addFeed("http://sbn.japaho.com/sbn/blog/taguken/rss.html", "田栗賢二のブログ"); 
feedControl.addFeed("http://feedblog.ameba.jp/rss/ameblo/uloulogic/rss20.xml", "金子泰志のブログ"); 
feedControl.addFeed("http://feedblog.ameba.jp/rss/ameblo/tocky-pp/rss20.xml", "とっきーのブログ 土岐田祐治"); 





  feedControl.draw(document.getElementById("feed"), 
    {drawMode : google.feeds.FeedControl.DRAW_MODE_LINEAR}
  );
}
google.setOnLoadCallback(initialize);

