      var images = {
        // 画像とジャンプ先の URL のペア
        url : [
          ['banner_jst.jpg', 'http://www.j-studio.tv/'],
          ['banner_sh.jpg', 'http://www.slowhandsports.jp/'],
          ['banner_br.jpg', 'http://www.deeposs.jp/'],
          ['banner_tgt.jpg', 'http://www.target-darts.jp/'],
          ['banner_ud.jpg', 'http://www.ultima-darts.com/'],
          ['banner_bp.jpg', '']
          ],

        // 順番のシャッフル
        shuffle : function() {
          for (i = this.url.length; i > 0; --i) {
            tmp = this.url[p = Math.floor(Math.random()*i)] ;
            this.url[p] = this.url[i-1] ;
            this.url[i-1] = tmp ;
          }
        },

        p : 0, // 表示画像のポインタ

        // 画像表示
        put : function() {
          document.write('<a href="'+this.url[this.p][1]+'"><img src="'+this.url[this.p++][0]+'" /></a>') ;
          if (this.p >= this.url.length) this.p = 0 ;
        }
      } ;

      images.shuffle() ;
