google.load("feeds", "1");

function initialize() {
	var feedControl = new google.feeds.FeedControl();
	feedControl.setLinkTarget(google.feeds.LINK_TARGET_BLANK);
	feedControl.setNumEntries(1);
	feedControl.addFeed("http://rssblog.ameba.jp/arigato-inc/rss.html", "<strong>城田良介のアリガトウブログ</strong>");
	feedControl.addFeed("http://rssblog.ameba.jp/ryuzi5050/rss.html", "<strong>敵倒なBLOG</strong>");
	feedControl.addFeed("http://rssblog.ameba.jp/funny-nakamichi/rss.html", "<strong>社長業をボクシングだと思えばこうなるだろうお母さん！！</strong>");
	feedControl.addFeed("http://rssblog.ameba.jp/byron-izu/rss.html", "<strong>アートプランファクトリーを夢見て・・・</strong>");
	feedControl.draw(document.getElementById("feedControl2"));
	

}

google.setOnLoadCallback(initialize);