


    function load() {
      var feed ="http://www2.ajsc.jp/rss2.xml";

  var options = {

/* 表示する記事数 */
    numResults : 10,

/* 記事を表示する時間 */
    displayTime : 5000,

/* 記事が切り替わる早さ */
    fadeOutTime : 500,

/* 別ウインドで開きます */
    linkTarget : google.feeds.LINK_TARGET_BLANK
  }
  new GFdynamicFeedControl(feed, "feedControl", options);

    }
    google.load("feeds", "1");
    google.setOnLoadCallback(load);



