google.load("feeds", "1");
function initialize() {
	var feedControl = new google.feeds.FeedControl();
	feedControl.setNumEntries(3);
	feedControl.setLinkTarget(google.feeds.LINK_TARGET_BLANK);
	feedControl.addFeed("http://rssblog.ameba.jp/hidamari-info/rss20.xml", "<h3><a href='http://ameblo.jp/hidamari-info/' target='_blank'>サロンからのお知らせ</a></h3>");
	feedControl.addFeed("http://rssblog.ameba.jp/suriaroma/rss20.xml", "<h3 class='marker02'><img src='img/blog-kumiko.jpg' alt='オーナー渡辺 久美子' /> <a href='http://ameblo.jp/suriaroma/' target='_blank'>オーナー渡辺 久美子のブログ</a><span><a href='recommend/index.html#kumiko_recommend'>★くみこのおきにいり</a></span></h3>");
	feedControl.addFeed("http://rssblog.ameba.jp/akko-aroma-hidamari/rss20.xml", "<h3 class='marker02'><img src='img/blog-akko.jpg' alt='セラピスト西村 明子' /> <a href='http://ameblo.jp/akko-aroma-hidamari/' target='_blank'>セラピスト西村 明子のブログ</a><span><a href='recommend/index.html#akiko_recommend'>★あっこのおきにいり</a></span></h3> ");
	feedControl.draw(document.getElementById("feed"), 
				{drawMode : google.feeds.FeedControl.DRAW_MODE_LINEAR}
//タブ指定		{drawMode : google.feeds.FeedControl.DRAW_MODE_TABBED}
		);
	}
google.setOnLoadCallback(initialize);
