// JavaScript Document

 
    google.load("feeds", "1");
	function initialize() {
		var feedControl = new google.feeds.FeedControl();
			feedControl.setNumEntries(2);
			feedControl.addFeed("http://blog.livedoor.jp/season12345-seasonal/index.rdf","Sea-Son-al");//フィードリンク
			feedControl.addFeed("http://blog.livedoor.jp/season12345/index.rdf","小倉店");//フィードリンク
			feedControl.addFeed("http://blog.livedoor.jp/season12345-simonoseki/index.rdf","下関店");//フィードリンク
			feedControl.addFeed("http://blog.livedoor.jp/season12345-ooita/index.rdf","大分店");//フィードリンク
			feedControl.addFeed("http://blog.livedoor.jp/season12345-chocorun/index.rdf","Chocorun");//フィードリンク
			feedControl.setLinkTarget(google.feeds.LINK_TARGET_BLANK);
			feedControl.draw(document.getElementById("feed"), 
			{drawMode : google.feeds.FeedControl.DRAW_MODE_LINEAR}//表示モード指定
	);
    }
    google.setOnLoadCallback(initialize);
