// JavaScript Document

google.load("feeds", "1");

function initialize() {
  var feedControl = new google.feeds.FeedControl();
  feedControl.setNumEntries(10);
  
  feedControl.setLinkTarget(google.feeds.LINK_TARGET_BLANK);
  feedControl.addFeed("http://blog.llllife.org/?mode=atom.xml", "llllife*blog");
  feedControl.addFeed("http://www.apple.com/jp/main/rss/prweb/pr.rss", "apple news");   feedControl.addFeed("http://dailynews.yahoo.co.jp/fc/rss.xml", "yahoo news");
  feedControl.draw(document.getElementById("feed"), 
    {drawMode : google.feeds.FeedControl.DRAW_MODE_TABBED}
  );
}
google.setOnLoadCallback(initialize);

