txt = new Array();
txt[0] = ' <a href="http://www.kudo-kg.co.jp/" target="_blank"><img src="img/random_kudou.jpg" alt="工藤興業" /></a> '
txt[1] = ' <a href="http://www.wainet.ne.jp/~h-t/" target="_blank"><img src="img/random_takami.jpg" alt="高見鮎商店" /></a> ';
txt[2] = ' <a href="http://kuroki.plus-hp.com/" target="_blank"><img src="img/random_kurogi.jpg" alt="黒木美生経営労務管理事務所" /></a> ';
txt[3] = ' <a href="http://www.miyazaki-cci.net/r-kouyou/" target="_blank"><img src="img/random_kouyou.jpg" alt="レストラン向洋" /></a> ';
txt[4] = ' <a href="http://www.fuusui-beans.jp/" target="_blank"><img src="img/random_aquamarine.jpg" alt="アクアマリン" /></a> ';
txt[5] = ' <a href="http://hotomeku.seesaa.net/" target="_blank"><img src="img/random_hotomeku.jpg" alt="ほとめく" /></a> ';
txt[6] = ' <a href="http://www.beauty-grace.jp/" target="_blank"><img src="img/random_grace.jpg" alt="エステサロン　グレース" /></a> ';
txt[7] = ' <a href="http://www.nobeokan.jp/review/area/kamiigada/igata.html" target="_blank"><img src="img/random_igata.jpg" alt="伊形カントリーゴルフクラブ" /></a> ';
txt[8] = ' <a href="http://x26.peps.jp/dancesiteusako" target="_blank"><img src="img/random_dancesite.jpg" alt="DANCE SITE" /></a> ';



function show_random_ads() {
    var i = Math.floor(Math.random() * txt.length);
    document.write(txt[i]);
}

