google.load("feeds", "1");

function initialize() {
  var feedControl = new google.feeds.FeedControl();
  feedControl.setNumEntries(1);
  feedControl.setLinkTarget(google.feeds.LINK_TARGET_BLANK);
  feedControl.addFeed("http://blog.livedoor.jp/collabohouse_design/index.rdf", "デザイン設計の知って欲しいこと。");
  feedControl.addFeed("http://blog.livedoor.jp/collabohouse/index.rdf", "インテリアコーディネーターの住まいとインテリア日記");
  feedControl.addFeed("http://blog.livedoor.jp/collabo_takubo/index.rdf", "田窪と福田の今日の工事日誌");
  feedControl.addFeed("http://yasaiseikatsulab.blogspot.com/feeds/posts/default?alt=rss", "チャリと野菜生活ラボ");
  feedControl.addFeed("http://rssblog.ameba.jp/kazupanman1108/rss20.xml", "西村和也の妻 あゆみちゃんの子育て日記");


  feedControl.draw(document.getElementById("feed"));
}
google.setOnLoadCallback(initialize);


