// JavaScript Document
// トップページ左、小バナー広告
function randomAdv33() {
  m = 0, x = 0, y = 0;
  ad  = new Array();
  adv = new Array();
  hit = new Array();
  hit[0] = 1; adv[0] = '<a href="http://www.p-takumi.com/" target="_blank" ><IMG border=0 width=170 height=60 alt="福岡のリフォーム会社プランニングtakumi" src="http://www.kyunavi.com/images/takumi_bn.jpg" ></a>';
  hit[1] = 1; adv[1] = '<a href="http://d-lily.com/" target="_blank" ><IMG border=0 width=170 height=60 alt="福岡市東区千早の美容室 Lily(リリー)" src="http://www.kyunavi.com/images/lily.jpg" ></a>';
  hit[2] = 1; adv[2] = '<a href="http://www.cat-co.net/" target="_blank" ><IMG border=0 width=170 height=60 alt="お仕事探しはシーエーティ（ＣＡＴ）" src="http://www.kyunavi.com/images/cat_banner.gif" ></a>';
  hit[3] = 1; adv[3] = '<a href="http://www.affect-beauty.com/" target="_blank" ><IMG border=0 width=170 height=60 alt="福岡市西区の美容室 -affect(アフェクト)-" src="http://www.kyunavi.com/images/affect_bn.jpg" ></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);
}
