// ランダム広告 index　中央の表示
function randomAdv14() {
  m = 0, x = 0, y = 0;
  ad  = new Array();
  adv = new Array();
  hit = new Array();

  // hitには相対確率を入れる
  // 完全にランダムにするなら全部"1"にする
  // advには、広告のタグを入れる。改行はしないようにする
  // 広告を増やしたりする場合は、"[ ]"の数字が0から順になるようにする
  hit[0] = 1; adv[0] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/aika.jpg" alt="E-selection　「あいか」" border="0"></a>';
  hit[1] = 1; adv[1] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/airi.jpg" alt="E-selection　「あいり」" border="0"></a>';
  hit[2] = 1; adv[2] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/asami.jpg" alt="E-selection　「あさみ」" border="0"></a>';
  hit[3] = 1; adv[3] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/ayana.jpg" alt="E-selection　「あやな」" border="0"></a>';
  hit[4] = 1; adv[4] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/nene.jpg" alt="E-selection 「ねね」" border="0"></a>';
  hit[5] = 1; adv[5] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/remi.jpg" alt="E-selection 「れみ」" border="0"></a>';
  hit[6] = 1; adv[6] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/rui.jpg" alt="E-selection 「ルイ」" border="0"></a>';
  hit[7] = 1; adv[7] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/sayaka.jpg" alt="E-selection 「さやか」" border="0"></a>';
  hit[8] = 1; adv[8] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/shion.jpg" alt="E-selection 「志音」" border="0"></a>';
  hit[9] = 1; adv[9] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/syo.jpg" alt="E-selection 「翔」" border="0"></a>';
  hit[10] = 1; adv[10] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/towa.jpg" alt="E-selection 「永遠」" border="0"></a>';
  hit[11] = 1; adv[11] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/yuri.jpg" alt="E-selection 「友梨」" border="0"></a>';
  hit[12] = 1; adv[12] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/yuzuna.jpg" alt="E-selection 「柚奈」" border="0"></a>';

  for(i=0; i<=hit.length - 1; i++) {
    m += hit[i];
  }
  n = Math.floor(Math.random() * m);
  n++;
  for(i=0; i<=hit.length - 1; i++) {
    x = y;
    y += hit[i];
    if(x<n && n<=y) ad = adv[i];
  }
  document.write(ad);
}
// ランダム広告
function randomAdv15() {
  m = 0, x = 0, y = 0;
  ad  = new Array();
  adv = new Array();
  hit = new Array();

  // hitには相対確率を入れる
  // 完全にランダムにするなら全部"1"にする
  // advには、広告のタグを入れる。改行はしないようにする
  // 広告を増やしたりする場合は、"[ ]"の数字が0から順になるようにする
  hit[0] = 1; adv[0] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/aika.jpg" alt="大阪ヌード学園　「あいか」" border="0"></a>';
  hit[1] = 1; adv[1] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/ichika.jpg" alt="大阪ヌード学園　「いちか」" border="0"></a>';
  hit[2] = 1; adv[2] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/makoto.jpg" alt="大阪ヌード学園　「まこと」" border="0"></a>';
  hit[3] = 1; adv[3] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/nanami.jpg" alt="大阪ヌード学園 「ななみ」" border="0"></a>';
  hit[4] = 1; adv[4] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/ren.jpg" alt="大阪ヌード学園 「れん」" border="0"></a>';
  hit[5] = 1; adv[5] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/rena.jpg" alt="大阪ヌード学園 「レナ」" border="0"></a>';
  hit[6] = 1; adv[6] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/shiho.jpg" alt="大阪ヌード学園 「しほ」" border="0"></a>';
  hit[7] = 1; adv[7] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/tsubasa.jpg" alt="大阪ヌード学園 「つばさ」" border="0"></a>';
  hit[8] = 1; adv[8] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/yua.jpg" alt="大阪ヌード学園 「ゆあ」" border="0"></a>';
  hit[9] = 1; adv[9] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/yukina.jpg" alt="大阪ヌード学園 「ゆきな」" border="0"></a>';
  for(i=0; i<=hit.length - 1; i++) {
    m += hit[i];
  }
  n = Math.floor(Math.random() * m);
  n++;
  for(i=0; i<=hit.length - 1; i++) {
    x = y;
    y += hit[i];
    if(x<n && n<=y) ad = adv[i];
  }
  document.write(ad);
}
// ランダム広告
function randomAdv16() {
  m = 0, x = 0, y = 0;
  ad  = new Array();
  adv = new Array();
  hit = new Array();

  // hitには相対確率を入れる
  // 完全にランダムにするなら全部"1"にする
  // advには、広告のタグを入れる。改行はしないようにする
  // 広告を増やしたりする場合は、"[ ]"の数字が0から順になるようにする
  hit[0] = 1; adv[0] = '<a href="http://www.kobe-harem.com" target="_blank"><img src="lady/photo/harem/ai.jpg" alt="神戸 福原 高級 ソープランド ハレム harem　「一条　愛」" border="0"></a>';
  hit[1] = 1; adv[1] = '<a href="http://www.kobe-harem.com" target="_blank"><img src="lady/photo/harem/izumi.jpg" alt="神戸 福原 高級 ソープランド ハレム harem　「泉　樹里」" border="0"></a>';
  hit[2] = 1; adv[2] = '<a href="http://www.kobe-harem.com" target="_blank"><img src="lady/photo/harem/ran.jpg" alt="神戸 福原 高級 ソープランド ハレム harem　「桐生　蘭」" border="0"></a>';
  hit[3] = 1; adv[3] = '<a href="http://www.kobe-harem.com" target="_blank"><img src="lady/photo/harem/remi.jpg" alt="神戸 福原 高級 ソープランド ハレム harem　「押切　麗未」" border="0"></a>';
  hit[4] = 1; adv[4] = '<a href="http://www.kobe-harem.com" target="_blank"><img src="lady/photo/harem/ren.jpg" alt="神戸 福原 高級 ソープランド ハレム harem 「桐生　蓮」" border="0"></a>';
  hit[5] = 1; adv[5] = '<a href="http://092-477-3777.com" target="_blank"><img src="lady/photo/club_seven/sora.jpg" alt="クラブセブン 「早乙女そら」" border="0"></a>';
  hit[6] = 1; adv[6] = '<a href="http://092-477-3777.com" target="_blank"><img src="lady/photo/club_seven/anna.jpg" alt="クラブセブン 「水崎安奈」" border="0"></a>';

  for(i=0; i<=hit.length - 1; i++) {
    m += hit[i];
  }
  n = Math.floor(Math.random() * m);
  n++;
  for(i=0; i<=hit.length - 1; i++) {
    x = y;
    y += hit[i];
    if(x<n && n<=y) ad = adv[i];
  }
  document.write(ad);
}
// ランダム広告
function randomAdv17() {
  m = 0, x = 0, y = 0;
  ad  = new Array();
  adv = new Array();
  hit = new Array();

  // hitには相対確率を入れる
  // 完全にランダムにするなら全部"1"にする
  // advには、広告のタグを入れる。改行はしないようにする
  // 広告を増やしたりする場合は、"[ ]"の数字が0から順になるようにする
  hit[0] = 1; adv[0] = '<a href="http://www.chichidoru.com/" target="_blank"><img src="lady/photo/chichidoru/ai.jpg" alt="乳ドル倶楽部　「あい」" border="0"></a>';
  hit[1] = 1; adv[1] = '<a href="http://www.chichidoru.com/" target="_blank"><img src="lady/photo/chichidoru/airi.jpg" alt="乳ドル倶楽部　「あいり」" border="0"></a>';
  hit[2] = 1; adv[2] = '<a href="http://www.chichidoru.com/" target="_blank"><img src="lady/photo/chichidoru/aki.jpg" alt="乳ドル倶楽部　「あき」" border="0"></a>';
  hit[3] = 1; adv[3] = '<a href="http://www.chichidoru.com/" target="_blank"><img src="lady/photo/chichidoru/haru.jpg" alt="乳ドル倶楽部 「はる」" border="0"></a>';
  hit[4] = 1; adv[4] = '<a href="http://www.chichidoru.com/" target="_blank"><img src="lady/photo/chichidoru/megu.jpg" alt="乳ドル倶楽部 「めぐ」" border="0"></a>';
  hit[5] = 1; adv[5] = '<a href="http://www.chichidoru.com/" target="_blank"><img src="lady/photo/chichidoru/mei.jpg" alt="乳ドル倶楽部 「めい」" border="0"></a>';
  hit[6] = 1; adv[6] = '<a href="http://www.chichidoru.com/" target="_blank"><img src="lady/photo/chichidoru/miki.jpg" alt="乳ドル倶楽部 「みき」" border="0"></a>';
  hit[7] = 1; adv[7] = '<a href="http://www.chichidoru.com/" target="_blank"><img src="lady/photo/chichidoru/misato.jpg" alt="乳ドル倶楽部 「みさと」" border="0"></a>';
  hit[8] = 1; adv[8] = '<a href="http://www.chichidoru.com/" target="_blank"><img src="lady/photo/chichidoru/nana.jpg" alt="乳ドル倶楽部 「なな」" border="0"></a>';
  hit[9] = 1; adv[9] = '<a href="http://www.chichidoru.com/" target="_blank"><img src="lady/photo/chichidoru/ryo.jpg" alt="乳ドル倶楽部 「りょう」" border="0"></a>';
  hit[10] = 1; adv[10] = '<a href="http://www.chichidoru.com/" target="_blank"><img src="lady/photo/chichidoru/yuna.jpg" alt="乳ドル倶楽部 「ゆな」" border="0"></a>';

  for(i=0; i<=hit.length - 1; i++) {
    m += hit[i];
  }
  n = Math.floor(Math.random() * m);
  n++;
  for(i=0; i<=hit.length - 1; i++) {
    x = y;
    y += hit[i];
    if(x<n && n<=y) ad = adv[i];
  }
  document.write(ad);
}
// ランダム広告
function randomAdv18() {
  m = 0, x = 0, y = 0;
  ad  = new Array();
  adv = new Array();
  hit = new Array();

  // hitには相対確率を入れる
  // 完全にランダムにするなら全部"1"にする
  // advには、広告のタグを入れる。改行はしないようにする
  // 広告を増やしたりする場合は、"[ ]"の数字が0から順になるようにする
  hit[0] = 1; adv[0] = '<a href="http://www.yuri-sono.com/shinjuku/" target="_blank"><img src="lady/photo/yuri-sono/aika.jpg" alt="人妻出逢い会『百合の園』新宿店　「愛伽」" border="0"></a>';
  hit[1] = 1; adv[1] = '<a href="http://www.yuri-sono.com/shinjuku/" target="_blank"><img src="lady/photo/yuri-sono/juri.jpg" alt="人妻出逢い会『百合の園』新宿店 「樹里」" border="0"></a>';
  hit[2] = 1; adv[2] = '<a href="http://www.yuri-sono.com/shinjuku/" target="_blank"><img src="lady/photo/yuri-sono/rino.jpg" alt="人妻出逢い会『百合の園』新宿店 「理乃」" border="0"></a>';
  hit[3] = 1; adv[3] = '<a href="http://www.yuri-sono.com/shinjuku/" target="_blank"><img src="lady/photo/yuri-sono/emi.jpg" alt="人妻出逢い会『百合の園』新宿店 「瑛美」" border="0"></a>';
  hit[4] = 1; adv[4] = '<a href="http://www.yuri-sono.com/shinjuku/" target="_blank"><img src="lady/photo/yuri-sono/yumi.jpg" alt="人妻出逢い会『百合の園』新宿店 「佑未」" border="0"></a>';

  for(i=0; i<=hit.length - 1; i++) {
    m += hit[i];
  }
  n = Math.floor(Math.random() * m);
  n++;
  for(i=0; i<=hit.length - 1; i++) {
    x = y;
    y += hit[i];
    if(x<n && n<=y) ad = adv[i];
  }
  document.write(ad);
}
// ランダム広告
function randomAdv19() {
  m = 0, x = 0, y = 0;
  ad  = new Array();
  adv = new Array();
  hit = new Array();

  // hitには相対確率を入れる
  // 完全にランダムにするなら全部"1"にする
  // advには、広告のタグを入れる。改行はしないようにする
  // 広告を増やしたりする場合は、"[ ]"の数字が0から順になるようにする
  hit[0] = 1; adv[0] = '<a href="http://www.precious.ne.jp/index2.html" target="_blank"><img src="lady/photo/precious/ami.jpg" alt="プレシャス　「風間 亜美 」" border="0"></a>';
  hit[1] = 1; adv[1] = '<a href="http://www.precious.ne.jp/index2.html" target="_blank"><img src="lady/photo/precious/karin.jpg" alt="プレシャス　「葉山 花梨」" border="0"></a>';
  hit[2] = 1; adv[2] = '<a href="http://www.precious.ne.jp/index2.html" target="_blank"><img src="lady/photo/precious/mariko.jpg" alt="プレシャス　「須藤まり子 」" border="0"></a>';
  hit[3] = 1; adv[3] = '<a href="http://www.precious.ne.jp/index2.html" target="_blank"><img src="lady/photo/precious/megumi.jpg" alt="プレシャス　「白鳥めぐみ 」" border="0"></a>';
  hit[4] = 1; adv[4] = '<a href="http://www.precious.ne.jp/index2.html" target="_blank"><img src="lady/photo/precious/miyu.jpg" alt="プレシャス 「栗原 美優」" border="0"></a>';
  hit[5] = 1; adv[5] = '<a href="http://www.precious.ne.jp/index2.html" target="_blank"><img src="lady/photo/precious/momoko.jpg" alt="プレシャス 「椎名 桃子」" border="0"></a>';
  hit[6] = 1; adv[6] = '<a href="http://www.precious.ne.jp/index2.html" target="_blank"><img src="lady/photo/precious/ran.jpg" alt="プレシャス 「風吹 ラン」" border="0"></a>';
  hit[7] = 1; adv[7] = '<a href="http://www.precious.ne.jp/index2.html" target="_blank"><img src="lady/photo/precious/rieko.jpg" alt="プレシャス 「雨宮りえこ」" border="0"></a>';
  hit[8] = 1; adv[8] = '<a href="http://www.precious.ne.jp/index2.html" target="_blank"><img src="lady/photo/precious/sakura.jpg" alt="プレシャス 「葉月さくら」" border="0"></a>';
  hit[9] = 1; adv[9] = '<a href="http://www.precious.ne.jp/index2.html" target="_blank"><img src="lady/photo/precious/sakurako.jpg" alt="プレシャス 「みさと」" border="0"></a>';
  hit[10] = 1; adv[10] = '<a href="http://www.precious.ne.jp/index2.html" target="_blank"><img src="lady/photo/precious/yuna.jpg" alt="プレシャス 「高橋ゆうな 」" border="0"></a>';

  for(i=0; i<=hit.length - 1; i++) {
    m += hit[i];
  }
  n = Math.floor(Math.random() * m);
  n++;
  for(i=0; i<=hit.length - 1; i++) {
    x = y;
    y += hit[i];
    if(x<n && n<=y) ad = adv[i];
  }
  document.write(ad);
}
// ランダム広告
function randomAdv20() {
  m = 0, x = 0, y = 0;
  ad  = new Array();
  adv = new Array();
  hit = new Array();

  // hitには相対確率を入れる
  // 完全にランダムにするなら全部"1"にする
  // advには、広告のタグを入れる。改行はしないようにする
  // 広告を増やしたりする場合は、"[ ]"の数字が0から順になるようにする
  hit[0] = 1; adv[0] = '<a href="http://www.clubrikyu.com" target="_blank"><img src="lady/photo/nude/ayaka.jpg" alt="CLUB RIKYU　「大石 彩華」" border="0"></a>';
  hit[1] = 1; adv[1] = '<a href="http://www.clubrikyu.com" target="_blank"><img src="lady/photo/nude/kyoka.jpg" alt="CLUB RIKYU　「嶋村 京香」" border="0"></a>';
  hit[2] = 1; adv[2] = '<a href="http://www.clubrikyu.com" target="_blank"><img src="lady/photo/nude/kyoko.jpg" alt="CLUB RIKYU　「永瀬 響子」" border="0"></a>';
  hit[3] = 1; adv[3] = '<a href="http://www.clubrikyu.com" target="_blank"><img src="lady/photo/nude/mao.jpg" alt="CLUB RIKYU　「片瀬 真央」" border="0"></a>';
  hit[4] = 1; adv[4] = '<a href="http://www.clubrikyu.com" target="_blank"><img src="lady/photo/nude/mirei.jpg" alt="CLUB RIKYU 「高嶋 美麗」" border="0"></a>';
  hit[5] = 1; adv[5] = '<a href="http://www.clubrikyu.com" target="_blank"><img src="lady/photo/nude/reira.jpg" alt="CLUB RIKYU 「芹沢 麗良」" border="0"></a>';
  hit[6] = 1; adv[6] = '<a href="http://www.clubrikyu.com" target="_blank"><img src="lady/photo/nude/s_yui.jpg" alt="CLUB RIKYU 「佐藤 結衣」" border="0"></a>';
  hit[7] = 1; adv[7] = '<a href="http://www.clubrikyu.com" target="_blank"><img src="lady/photo/nude/saki.jpg" alt="CLUB RIKYU 「伊東 早紀」" border="0"></a>';
  hit[8] = 1; adv[8] = '<a href="http://www.clubrikyu.com" target="_blank"><img src="lady/photo/nude/shiori.jpg" alt="CLUB RIKYU 「川嶋 詩織」" border="0"></a>';
  hit[9] = 1; adv[9] = '<a href="http://www.clubrikyu.com" target="_blank"><img src="lady/photo/nude/yuria.jpg" alt="CLUB RIKYU 「一条寺 ゆりあ」" border="0"></a>';
  for(i=0; i<=hit.length - 1; i++) {
    m += hit[i];
  }
  n = Math.floor(Math.random() * m);
  n++;
  for(i=0; i<=hit.length - 1; i++) {
    x = y;
    y += hit[i];
    if(x<n && n<=y) ad = adv[i];
  }
  document.write(ad);
}
// ランダム広告
function randomAdv21() {
  m = 0, x = 0, y = 0;
  ad  = new Array();
  adv = new Array();
  hit = new Array();

  // hitには相対確率を入れる
  // 完全にランダムにするなら全部"1"にする
  // advには、広告のタグを入れる。改行はしないようにする
  // 広告を増やしたりする場合は、"[ ]"の数字が0から順になるようにする
  hit[0] = 1; adv[0] = '<a href="http://www.m-kikaku92.com/" target="_blank"><img src="lady/photo/m/botan.jpg" alt="M女専科M〜エム〜　「ぼたん」" border="0"></a>';
  hit[1] = 1; adv[1] = '<a href="http://www.m-kikaku92.com/" target="_blank"><img src="lady/photo/m/emiri.jpg" alt="M女専科M〜エム〜　「えみり」" border="0"></a>';
  hit[2] = 1; adv[2] = '<a href="http://www.m-kikaku92.com/" target="_blank"><img src="lady/photo/m/koyuki.jpg" alt="M女専科M〜エム〜　「小雪」" border="0"></a>';
  hit[3] = 1; adv[3] = '<a href="http://www.m-kikaku92.com/" target="_blank"><img src="lady/photo/m/miyu.jpg" alt="M女専科M〜エム〜　「みゆう」" border="0"></a>';
  hit[4] = 1; adv[4] = '<a href="http://www.m-kikaku92.com/" target="_blank"><img src="lady/photo/m/rino.jpg" alt="M女専科M〜エム〜 「りの」" border="0"></a>';
  hit[5] = 1; adv[5] = '<a href="http://www.m-kikaku92.com/" target="_blank"><img src="lady/photo/m/sayuri.jpg" alt="M女専科M〜エム〜 「さゆり」" border="0"></a>';
  hit[6] = 1; adv[6] = '<a href="http://www.m-kikaku92.com/" target="_blank"><img src="lady/photo/m/sora.jpg" alt="M女専科M〜エム〜 「そら」" border="0"></a>';

  for(i=0; i<=hit.length - 1; i++) {
    m += hit[i];
  }
  n = Math.floor(Math.random() * m);
  n++;
  for(i=0; i<=hit.length - 1; i++) {
    x = y;
    y += hit[i];
    if(x<n && n<=y) ad = adv[i];
  }
  document.write(ad);
}
// ランダム広告
function randomAdv22() {
  m = 0, x = 0, y = 0;
  ad  = new Array();
  adv = new Array();
  hit = new Array();

  // hitには相対確率を入れる
  // 完全にランダムにするなら全部"1"にする
  // advには、広告のタグを入れる。改行はしないようにする
  // 広告を増やしたりする場合は、"[ ]"の数字が0から順になるようにする
  hit[0] = 1; adv[0] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/aika.jpg" alt="E-selection　「あいか」" border="0"></a>';
  hit[1] = 1; adv[1] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/airi.jpg" alt="E-selection　「あいり」" border="0"></a>';
  hit[2] = 1; adv[2] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/asami.jpg" alt="E-selection　「あさみ」" border="0"></a>';
  hit[3] = 1; adv[3] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/ayana.jpg" alt="E-selection　「あやな」" border="0"></a>';
  hit[4] = 1; adv[4] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/nene.jpg" alt="E-selection 「ねね」" border="0"></a>';
  hit[5] = 1; adv[5] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/remi.jpg" alt="E-selection 「れみ」" border="0"></a>';
  hit[6] = 1; adv[6] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/rui.jpg" alt="E-selection 「ルイ」" border="0"></a>';
  hit[7] = 1; adv[7] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/sayaka.jpg" alt="E-selection 「さやか」" border="0"></a>';
  hit[8] = 1; adv[8] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/shion.jpg" alt="E-selection 「志音」" border="0"></a>';
  hit[9] = 1; adv[9] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/syo.jpg" alt="E-selection 「翔」" border="0"></a>';
  hit[10] = 1; adv[10] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/towa.jpg" alt="E-selection 「永遠」" border="0"></a>';
  hit[11] = 1; adv[11] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/yuri.jpg" alt="E-selection 「友梨」" border="0"></a>';
  hit[12] = 1; adv[12] = '<a href="http://www.e-selection.in/" target="_blank"><img src="lady/photo/e-selection/yuzuna.jpg" alt="E-selection 「柚奈」" border="0"></a>';

  for(i=0; i<=hit.length - 1; i++) {
    m += hit[i];
  }
  n = Math.floor(Math.random() * m);
  n++;
  for(i=0; i<=hit.length - 1; i++) {
    x = y;
    y += hit[i];
    if(x<n && n<=y) ad = adv[i];
  }
  document.write(ad);
}
// ランダム広告
function randomAdv23() {
  m = 0, x = 0, y = 0;
  ad  = new Array();
  adv = new Array();
  hit = new Array();

  // hitには相対確率を入れる
  // 完全にランダムにするなら全部"1"にする
  // advには、広告のタグを入れる。改行はしないようにする
  // 広告を増やしたりする場合は、"[ ]"の数字が0から順になるようにする
  hit[0] = 1; adv[0] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/aika.jpg" alt="大阪ヌード学園　「あいか」" border="0"></a>';
  hit[1] = 1; adv[1] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/ichika.jpg" alt="大阪ヌード学園　「いちか」" border="0"></a>';
  hit[2] = 1; adv[2] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/makoto.jpg" alt="大阪ヌード学園　「まこと」" border="0"></a>';
  hit[3] = 1; adv[3] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/nanami.jpg" alt="大阪ヌード学園 「ななみ」" border="0"></a>';
  hit[4] = 1; adv[4] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/ren.jpg" alt="大阪ヌード学園 「れん」" border="0"></a>';
  hit[5] = 1; adv[5] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/rena.jpg" alt="大阪ヌード学園 「レナ」" border="0"></a>';
  hit[6] = 1; adv[6] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/shiho.jpg" alt="大阪ヌード学園 「しほ」" border="0"></a>';
  hit[7] = 1; adv[7] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/tsubasa.jpg" alt="大阪ヌード学園 「つばさ」" border="0"></a>';
  hit[8] = 1; adv[8] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/yua.jpg" alt="大阪ヌード学園 「ゆあ」" border="0"></a>';
  hit[9] = 1; adv[9] = '<a href="http://www.osaka-nude.com" target="_blank"><img src="lady/photo/nude/yukina.jpg" alt="大阪ヌード学園 「ゆきな」" border="0"></a>';

  for(i=0; i<=hit.length - 1; i++) {
    m += hit[i];
  }
  n = Math.floor(Math.random() * m);
  n++;
  for(i=0; i<=hit.length - 1; i++) {
    x = y;
    y += hit[i];
    if(x<n && n<=y) ad = adv[i];
  }
  document.write(ad);
}


