var images = {
        // 画像とリンク先の URL
        url : [
          ['http://www.kurumesi.com/image/banner/buniyan.jpg', 'http://www.kurumesi.com/shop/detail/10/'],
          ['http://www.kurumesi.com/image/banner/emys.jpg', 'http://www.kurumesi.com/shop/detail/16/'],
          ['http://www.kurumesi.com/image/banner/aporte.jpg', 'http://www.kurumesi.com/shop/detail/7/'],
          ['http://www.kurumesi.com/image/banner/omurai.jpg', 'http://www.kurumesi.com/shop/detail/12/'],
          ['http://www.kurumesi.com/image/banner/platinum.jpg', 'http://www.kurumesi.com/shop/detail/8/'],
          ['http://www.kurumesi.com/image/banner/pandme.jpg', 'http://www.kurumesi.com/shop/detail/11/'],
          ['http://www.kurumesi.com/image/banner/heart.jpg', 'http://www.kurumesi.com/shop/detail/15/'],
          ['http://www.kurumesi.com/image/banner/takumi.jpg', 'http://www.kurumesi.com/shop/detail/6/'],
          ['http://www.kurumesi.com/image/banner/houbun.jpg', 'http://www.kurumesi.com/shop/detail/1/'],
          ['http://www.kurumesi.com/image/banner/queen.jpg', 'http://www.kurumesi.com/shop/detail/21/'],
          ['http://www.kurumesi.com/image/banner/hot.jpg', 'http://www.kurumesi.com/shop/detail/14/'],
          ['http://www.kurumesi.com/image/banner/osuteria.jpg', 'http://www.kurumesi.com/shop/detail/26/'],
          ['http://www.kurumesi.com/image/banner/ke-taringtokyo.jpg', 'http://www.kurumesi.com/shop/detail/25/'],
          ['http://www.kurumesi.com/image/banner/Bec.jpg', 'http://www.kurumesi.com/shop/detail/32/'],
          ['http://www.kurumesi.com/image/banner/partytimes.jpg', 'http://www.kurumesi.com/shop/detail/34/'],
          ['http://www.kurumesi.com/image/banner/orientalism.jpg', 'http://www.kurumesi.com/shop/detail/35/'],
          ['http://www.kurumesi.com/image/banner/zoogunzoo.jpg', 'http://www.kurumesi.com/shop/detail/17/'],
          ],

        // ここから下はさわるな！
        // 順番のシャッフル
        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() ;
