      var images = {
        // 画像とジャンプ先の URL のペア
        url : [
          ['http://heaven-gigolo.net/images/banner/01.jpg', '#1', 'バナー広告的なもの01'],
          ['http://heaven-gigolo.net/images/banner/02.jpg', '#2', 'バナー広告的なもの02'],
          ['http://heaven-gigolo.net/images/banner/03.jpg', '#3', 'バナー広告的なもの03'],
          ['http://heaven-gigolo.net/images/banner/04.jpg', '#4', 'バナー広告的なもの04'],
          ['http://heaven-gigolo.net/images/banner/05.jpg', '#5', 'バナー広告的なもの05']
          ],

        // 順番のシャッフル
        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]+'" title="'+this.url[this.p][2]+'" target="_blank"><img src="'+this.url[this.p][0]+'" width="180" height="60" border="0" alt="'+this.url[this.p][2]+'" /></a><br />'+this.url[this.p++][2]+'<br />') ;
          if (this.p >= this.url.length) this.p = 0 ;
        }
      } ;

      images.shuffle() ;
