
// ランダム広告
function randomAdv() {
  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 class="info" href="http://www.chiryohi.com/cnt/cnt_matsuo.html" target="_BLANK">まつお皮ふ科形成外科クリニック【福岡】</A>　　最新の若返り治療で肌トラブルを解決。';


  hit[1] = 1; adv[1] = '<A class="info" href="http://www.chiryohi.com/cnt/cnt_east.html" target="_BLANK">渋谷イーストクリニック【東京】</A>　形成外科専門医がアンチエイジング・美容外科・皮膚科治療を行う医療機関です。';


  hit[2] = 1; adv[2] = '<A class="info" href="http://www.chiryohi.com/cnt/cnt_ueda.html" target="_BLANK">荻窪上田クリニック【東京】</A>　皮膚科専門医かつレーザー認定医による安心の治療。';


  hit[3] = 1; adv[3] = '<A class="info" href="http://www.chiryohi.com/cnt/cnt_kato.html" target="_BLANK">加藤クリニック麻布【東京】</A>　美容医療専門10年以上の実績で親身あるカウンセリングと安全な診療を行っています。';


  hit[4] = 1; adv[4] = '<A class="info" href="http://www.chiryohi.com/cnt/cnt_nishiazabuhifu.html" target="_BLANK">西麻布ヒフ・形成外科【東京】</A>　日本形成外科学会認定専門医による、安全で質の高い施術が受けられるクリニックです。';


  hit[5] = 1; adv[5] = '<A class="info" href="http://www.chiryohi.com/cnt/cnt_fujii.html" target="_BLANK">藤井皮フ科クリニック【東京】</A>　現在開院キャンペーン料金あり(例…ワキ脱毛3回￥15,750)';


  hit[6] = 1; adv[6] = '<A class="info" href="http://www.chiryohi.com/cnt/cnt_nihonbashi.html" target="_BLANK">日本橋形成外科【東京】</A>　大学病院直結で安心、健全。プライバシーに配慮した新しいクリニックです。';


  hit[7] = 1; adv[7] = '<A class="info" href="http://www.chiryohi.com/cnt/cnt_shonan.html" target="_BLANK">湘南美容外科クリニック【東京】</A>　脂肪吸引・豊胸・二重・若返り・美容皮膚科・審美歯科まで美の相談はこちら';


  hit[8] = 1; adv[8] = '<A class="info" href="http://www.chiryohi.com/cnt/cnt_tatsuki.html" target="_BLANK">たつきクリニック【東京】</A>緊急避妊ピル（アフターピル）性病検査　妊娠中絶　レーザ治療　土曜診療';


  hit[9] = 1; adv[9] = '<A class="info" href="http://www.chiryohi.com/cnt/cnt_nakameguro.html">中目黒皮フ科形成外科【東京】</A>　全身麻酔設備まで備えた本格的な美容外科です。目・鼻・顔面のスペシャリストです。';


  hit[10] = 1; adv[10] = '<A class="info" href="http://www.chiryohi.com/cnt/cnt_hiroo.html">広尾プライム皮膚科【東京】</A>　当院は女性皮膚科医による美容皮膚科です。肌の悩み等女性の視点でお答致します。';


  hit[11] = 1; adv[11] = '<A class="info" href="http://www.chiryohi.com/cnt/cnt_ayc.html">エーワイシー銀座形成外科【東京】</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);
}




