var images = {

url : [
['images/gassyuku/Image1.jpg', 'http://www.kaibo.co.jp/'],
['images/gassyuku/Image3.jpg', 'http://w2232.nsk.ne.jp/naoki-noto/'],
['images/gassyuku/Image5.jpg', 'http://www.panasys.net/hanagoyomi/'],
['images/gassyuku/Image6.jpg', 'http://www.daikanso.jp/'],
['images/gassyuku/Image7.jpg', 'http://www16.ocn.ne.jp/~yunohana/'],
['images/gassyuku/Image9.jpg', 'http://www.suzukasou.com/'],
['images/gassyuku/Image11.jpg', 'http://www.hosenkaku.jp/'],
['images/gassyuku/Image13.jpg', 'http://www.wakura.or.jp/kaigetsu.htm'],
['images/gassyuku/Image14.jpg', 'http://www.wakura-hamanasu.jp/'],
['images/gassyuku/Image15.jpg', 'http://www.biwanso.com/']
],

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]+'" style="border-style:none;" /></a>') ;
document.close();
if (this.p >= this.url.length) this.p = 0 ;
}
} ;

images.shuffle() ;

