﻿function load() {
	var feed = [
		{title:'AACH RSS', url:'http://antarcticwind.blog5.fc2.com/?xml'}
	];
	var options = {
		/* 表示する記事数 */
		numResults : 10,

		/* 記事を表示する時間 */
		displayTime : 5000,

		/* 記事が切り替わる早さ */
		fadeOutTime : 500,

		/* 別ウインドで開きます */
		linkTarget : google.feeds.LINK_TARGET_BLANK
	}
	new GFdynamicFeedControl(feed, "feedControl", options);
}
	google.load("feeds", "1");
	google.setOnLoadCallback(load);