google.load("feeds", "1");

      function initialize() {
         var feedControl = new google.feeds.FeedControl();
        feedControl.addFeed("http://blog.livedoor.jp/henko_staff/atom.xml", "スタッフの雑記帳");
        feedControl.addFeed("http://teraryo.cocolog-nifty.com/blog/rss.xml", "胡麻でごま栽培");
        feedControl.addFeed("http://henko.cocolog-nifty.com/blog/rss.xml", "へんこ社長の胡麻便り");
		feedControl.setNumEntries(1);

        feedControl.draw(document.getElementById("feedControl"));
      }
      google.setOnLoadCallback(initialize);



