var images = {
        // 画像とジャンプ先の URL のペア
        url : [



          ['http://www.mf21.co.jp/primg/bn-rokuharakaidan.gif', 'http://www.mf21.co.jp/newproduct/post-23.html'],



          ['http://www.mf21.co.jp/primg/bn-rokuharabord.gif', 'http://www.mf21.co.jp/floor-wall/post-39.html'],



          ['http://www.mf21.co.jp/primg/bn-reformc.gif', 'http://www.mf21.co.jp/others/reformcurtain.html'],



          ['http://www.mf21.co.jp/primg/bn-kamachiman.gif', 'http://www.mf21.co.jp/newproduct/post-25.html']



          ],

        // 順番のシャッフル
        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() ;
