// JavaScript Document

//▼▽▼890×px
function randomAdv890() {
  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="◆" target="_self"><img src="http://www.gyonet.jp/common_files/images/house_ads/890/◆" width="890" alt="◆" /></a>';
// サイズ違い
//  hit[2] = 10; adv[2] = '<a href="http://www.gyonet.jp/wiki/index.php/Category:%E9%87%A3%E3%82%8A%E3%81%AE%E3%83%9E%E3%83%8A%E3%83%BC"><img alt="釣りを愛することは、マナーを知ることです" src="http://www.gyonet.jp/common_files/images/house_ads/890/manner.gif"></a>';
//  hit[8] = 10; adv[8] = '<a href="http://www.gyonet.jp/user/process/new/"><img alt="ぎょねっと会員募集" src="http://www.gyonet.jp/common_files/images/house_ads/890/member-s.jpg"></a>';

  hit[0] = 3; adv[0] = '<a href="http://www.gyonet.jp/movie/category/salt/kurodai/1009osaka/01.html"><img alt="ボートチヌ爆釣法" src="http://www.gyonet.jp/common_files/images/house_ads/890/mov10091602.gif"></a>';
  hit[1] = 5; adv[1] = '<a href="http://www.gyonet.jp/press/2010/12/09/ikaplus-born.html"><img alt="イカ釣りオンリーの地域密着型季刊誌『イカプラス』が創刊！" src="http://www.gyonet.jp/common_files/images/house_ads/890/ikaplus-born.gif"></a>';
  hit[2] = 5; adv[2] = '<a href="http://www.gyonet.jp/gyotacky/"><img alt="写真から実寸の魚拓を制作" src="http://www.gyonet.jp/common_files/images/house_ads/890/gyotaku-5.jpg"></a>';
  hit[3] = 1; adv[3] = '<a href="http://www.gyonet.jp/press/hayabusa/egi-rambu_v3.html"><img alt="ハヤブサ　FINA　乱舞V3" src="http://www.gyonet.jp/common_files/images/house_ads/890/ranbu.jpg"></a>';
  hit[4] = 5; adv[4] = '<a href="http://www.gyonet.jp/movie/category/fresh/wakasagi/1012hibarako/01.html"><img alt="本山博之のワカサギ授業" src="http://www.gyonet.jp/common_files/images/house_ads/890/movie_wakasagi.jpg"></a>';
  hit[5] = 5; adv[5] = '<a href="http://www.gyonet.jp/movie/category/salt/seabass/1004nagoya/01.html"><img alt="爆釣☆ボートシーバスゲーム" src="http://www.gyonet.jp/common_files/images/house_ads/890/hamazu.jpg"></a>';
  hit[6] = 1; adv[6] = '<a href="http://www.gyonet.jp/press/article/10051401.html"><img alt="アオリイカパラダイスプロジェクト" src="http://www.gyonet.jp/common_files/images/house_ads/890/aoriika.jpg"></a>';
  hit[7] = 1; adv[7] = '<a href="http://www.gyonet.jp/user/process/new/"><img alt="ぎょねっと会員募集" src="http://www.gyonet.jp/common_files/images/house_ads/890/member.jpg"></a>';
  hit[8] = 5; adv[8] = '<a href="http://www.gyonet.jp/gyotacky/"><img alt="写真から実寸の魚拓を制作" src="http://www.gyonet.jp/common_files/images/house_ads/890/gyotaku-6.jpg"></a>';
  hit[9] = 10; adv[9] = '<a href="http://www.gyonet.jp/movie/category/fresh/trout/1006mie/01.html"><img alt="管理釣り場入門" src="http://www.gyonet.jp/common_files/images/house_ads/890/mov10091601.jpg"></a>';
  hit[10] = 5; adv[10] = '<a href="http://www.gyonet.jp/gyotacky/"><img alt="写真から実寸の魚拓を制作" src="http://www.gyonet.jp/common_files/images/house_ads/890/gyotaku.jpg"></a>';
  hit[11] = 5; adv[11] = '<a href="http://www.gyonet.jp/gyotacky/"><img alt="写真から実寸の魚拓を制作" src="http://www.gyonet.jp/common_files/images/house_ads/890/gyotaku-2.jpg"></a>';
  hit[12] = 5; adv[12] = '<a href="http://www.gyonet.jp/gyotacky/"><img alt="写真から実寸の魚拓を制作" src="http://www.gyonet.jp/common_files/images/house_ads/890/gyotaku-3.jpg"></a>';
  hit[13] = 5; adv[13] = '<a href="http://www.gyonet.jp/gyotacky/"><img alt="写真から実寸の魚拓を制作" src="http://www.gyonet.jp/common_files/images/house_ads/890/gyotaku-4.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);
}
