// load the AJAX Feed API
      google.load("feeds", "1");

      function OnLoad() {

        // create a feed control
        var feedControl = new google.feeds.FeedControl();

        feedControl.addFeed("http://news.xgai.jp/xml-rss2.php?blogid=1", "全て");
        feedControl.addFeed("http://news.xgai.jp/xml-rss2.php?catid=5&blogid=1", "お知らせ");
        feedControl.addFeed("http://news.xgai.jp/xml-rss2.php?catid=3&blogid=1", "メディア掲載");
        feedControl.addFeed("http://news.xgai.jp/xml-rss2.php?catid=6&blogid=1", "プレスリリース");

        feedControl.setLinkTarget(google.feeds.LINK_TARGET_BLANK);
        feedControl.setNumEntries(6);
        feedControl.draw(document.getElementById("feed"), 
                         {drawMode : google.feeds.FeedControl.DRAW_MODE_TABBED});
      }
      google.setOnLoadCallback(OnLoad);
