var girl01 = {
// 0.URL　1.お名前
url : [
['001'],
['002'],
['003'],
['004'],
['005'],
['006'],
['007'],
['008'],
['009']
],

// 順番のシャッフル
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() {
	var box = "location='#cont4'";
    document.write('<div class="girl_photo"><a href="prof/'+this.url[this.p][0]+'.html" target="frame" onClick="' + box + '"><img src="girl/'+this.url[this.p++][0]+'.jpg" width="80" height="80" alt="いますぐたすけて！" class="over" /></a></div>') ;
    if (this.p >= this.url.length) this.p = 0 ;
  }
} ;

var girl02 = {
// 0.URL　1.お名前
url : [
['010'],
['011'],
['012'],
['013'],
['014'],
['015'],
['016'],
['017'],
['018']
],

// 順番のシャッフル
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() {
	var box = "location='#cont4'";
    document.write('<div class="girl_photo"><a href="prof/'+this.url[this.p][0]+'.html" target="frame" onClick="' + box + '"><img src="girl/'+this.url[this.p++][0]+'.jpg" width="80" height="80" alt="短期でおねがい！" class="over" /></a></div>') ;
    if (this.p >= this.url.length) this.p = 0 ;
  }
} ;

var girl03 = {
// 0.URL　1.お名前
url : [
['019'],
['020'],
['021'],
['022'],
['023'],
['024'],
['025'],
['026'],
['027']
],

// 順番のシャッフル
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() {
	var box = "location='#cont4'";
    document.write('<div class="girl_photo"><a href="prof/'+this.url[this.p][0]+'.html" target="frame" onClick="' + box + '"><img src="girl/'+this.url[this.p++][0]+'.jpg" width="80" height="80" alt="長期でよろしく！" class="over" /></a></div>') ;
    if (this.p >= this.url.length) this.p = 0 ;
  }
} ;

var men01 = {
// 0.URL　1.お名前
url : [
['028'],
['029'],
['030'],
['031'],
['032'],
['033'],
['034'],
['035'],
['036']
],

// 順番のシャッフル
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() {
	var box = "location='#cont4'";
    document.write('<div class="girl_photo"><a href="prof/'+this.url[this.p][0]+'.html" target="frame" onClick="' + box + '"><img src="girl/'+this.url[this.p++][0]+'.jpg" width="80" height="80" alt="家においでよ！" class="over" /></a></div>') ;
    if (this.p >= this.url.length) this.p = 0 ;
  }
} ;

girl01.shuffle() ;
girl02.shuffle() ;
girl03.shuffle() ;
men01.shuffle() ;


