// JavaScript Document
// とっぷぺーじ大バナーランダム広告
function randomAdv11() {
  m = 0, x = 0, y = 0;
  ad  = new Array();
  adv = new Array();
  hit = new Array();
  hit[0] = 1; adv[0] = '<a href="http://click.linksynergy.com/fs-bin/click?id=Ne*sL4Dhhuk&offerid=65724.10000176&type=4&subid=0"><IMG alt="ドクターシーラボ" border="0" src="http://www.ci-labo.com/af/banner/ss_tk/ss_tk_468x60.jpg"></a><IMG border="0" width="1" height="1" src="http://ad.linksynergy.com/fs-bin/show?id=Ne*sL4Dhhuk&bids=65724.10000176&type=4&subid=0">';
  hit[1] = 4; adv[1] = '<a href="http://www.kyunavi.com/koukoku/ad_info.html"><img src="http://www.kyunavi.com/nimg/koukokutop.gif" width="468" height="60" border="0" alt="広告募集中！"></a>';
  hit[2] = 1; adv[2] = '<a href="http://click.linksynergy.com/fs-bin/click?id=Ne*sL4Dhhuk&offerid=119240.10000229&type=4&subid=0"><IMG alt="ANAの旅行サイト【ANA SKY WEB TOUR】" border="0" src="http://www.ana.co.jp/travel/af_banner/468_60_kaigaidp.gif"></a><IMG border="0" width="1" height="1" src="http://ad.linksynergy.com/fs-bin/show?id=Ne*sL4Dhhuk&bids=119240.10000229&type=4&subid=0">';
  hit[3] = 2; adv[3] = '<a href="http://www.kyunavi.com/shop_shin/index.html"><img src="http://www.kyunavi.com/nimg/shinshin_shop.jpg" width="468" height="60" border="0" alt="博多らーめんShinShin おみやげラーメン 九ナビショッピング"></a>';
  hit[4] = 1; adv[4] = '<a href="http://click.linksynergy.com/fs-bin/click?id=Ne*sL4Dhhuk&offerid=119240.10000354&type=4&subid=0"><IMG alt="ANAの旅行サイト【ANA SKY WEB TOUR】" border="0" src="http://www.ana.co.jp/travel/af_banner/468_60_kaigaidp.gif"></a><IMG border="0" width="1" height="1" src="http://ad.linksynergy.com/fs-bin/show?id=Ne*sL4Dhhuk&bids=119240.10000354&type=4&subid=0">';
  hit[5] = 1; adv[5] = '<a href="http://click.linksynergy.com/fs-bin/click?id=Ne*sL4Dhhuk&offerid=147024.10000060&type=4&subid=0"><IMG alt="ライスフォース" border="0" src="http://pic.image-net.info/rf/riceforce/pc/prod/campaign/affiliate/stc_images/468_60.gif"></a><IMG border="0" width="1" height="1" src="http://ad.linksynergy.com/fs-bin/show?id=Ne*sL4Dhhuk&bids=147024.10000060&type=4&subid=0">';
  hit[6] = 1; adv[6] = '<a href="http://www.kyunavi.com/shop_shin/index.html"><img src="http://www.kyunavi.com/nimg/shinshin_shop.jpg" width="468" height="60" border="0" alt="博多らーめんShinShin おみやげラーメン 九ナビショッピング"></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);
}
