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/shibuya-landcreate/rss20.xml", "<strong>努力のうえに花咲く日を信じて</strong>");
	feedControl.addFeed("http://rssblog.ameba.jp/mclass17/rss.html", "<strong>～心～幸せはいつも自分の心が決める</strong>");
	feedControl.addFeed("http://rssblog.ameba.jp/complete/rss.html", "<strong>ジャンプアタック！！しゅしゅしゅ～しゅうちゃんのブログ♪</strong>");
	feedControl.addFeed("http://rssblog.ameba.jp/daisk-13/rss.html", "<strong>心に愛を・・・愛するということ</strong>");
	feedControl.draw(document.getElementById("feedControl"));
	

}

google.setOnLoadCallback(initialize);