// ランダムに画像を表示する
jmps = new Array();
imgs = new Array();
texts = new Array();
// ジャンプ先のアドレス(数字は画像、テキストと対応)
                        jmps[0] = "http://hiratayasunobu.ti-da.net/";
                        jmps[1] = "http://toyozato.ti-da.net/";
                        jmps[2] = "http://kentaro.ti-da.net/";
                        jmps[3] = "http://nikadori.ti-da.net/";
                        jmps[4] = "http://shuchan.ti-da.net/";
                        jmps[5] = "http://tamsign.ti-da.net/";
                        jmps[6] = "http://safaiareiko.ti-da.net/";
                        jmps[7] ="http://kyodahiroshi.ti-da.net/";
                        jmps[8] ="http://wondercube.ti-da.net/";
                        jmps[9] ="http://miyagiatsuko.ti-da.net/";
                        jmps[10] ="http://yamauchitax.ti-da.net/";
                        jmps[11] ="http://mayama.ti-da.net/";
                        jmps[12] ="http://katsuobushi.ti-da.net/";
                        jmps[13] ="http://lequiosgibo.ti-da.net/";
                        jmps[14] ="http://hotelpalmroyal.ti-da.net/";
                        jmps[15] ="http://tadao.ti-da.net/";
                        jmps[16] ="http://creare.ti-da.net/";
                        jmps[17] ="http://yuriozaki.ti-da.net/";
                        jmps[18] ="http://arakakibiyouigaku.ti-da.net/";
                        jmps[19] ="http://ryukyusign.ti-da.net/";
                        jmps[20] ="http://reimei.ti-da.net/";
                        jmps[21] ="http://godaimakiko.ti-da.net/";
                        jmps[22] ="http://usamiyukie.ti-da.net/";

// 画像のアドレス(数字はジャンプ先のアドレス、テキストと対応)※httpsを必ずつける事。
                        imgs[0] = "http://blog.ti-da.net/common/img/president/bnr/bnr_hirata300.jpg";
                        imgs[1] = "http://blog.ti-da.net/common/img/president/bnr/bnr_toyozato300.jpg";
                        imgs[2] = "http://blog.ti-da.net/common/img/president/bnr/bnr_kentaro300.jpg";
                        imgs[3] = "http://blog.ti-da.net/common/img/president/bnr/bnr_nikawadori300.jpg";
                        imgs[4] = "http://blog.ti-da.net/common/img/president/bnr/bnr_t_motomura300.jpg";
                        imgs[5] = "http://blog.ti-da.net/common/img/president/bnr/bnr_igei300.jpg";
                        imgs[6] = "http://blog.ti-da.net/common/img/president/bnr/bnr_takagi300.jpg";
                        imgs[7] = "http://blog.ti-da.net/common/img/president/bnr/bnr_kyoda300.jpg";
                        imgs[8] = "http://blog.ti-da.net/common/img/president/bnr/bnr_uehara300.jpg";
                        imgs[9] = "http://blog.ti-da.net/common/img/president/bnr/bnr_miyagi300.jpg";
                        imgs[10] = "http://blog.ti-da.net/common/img/president/bnr/bnr_yamauchi300.jpg";
                        imgs[11] = "http://blog.ti-da.net/common/img/president/bnr/bnr_mayama300.jpg";
                        imgs[12] = "http://blog.ti-da.net/common/img/president/bnr/bnr_nakamoto300.jpg";
                        imgs[13] = "http://blog.ti-da.net/common/img/president/bnr/bnr_gibo300.jpg";
                        imgs[14] = "http://blog.ti-da.net/common/img/president/bnr/bnr_takakura300.jpg";
			imgs[15] = "http://blog.ti-da.net/common/img/president/bnr/bnr_t_higa300.jpg";
			imgs[16] = "http://blog.ti-da.net/common/img/president/bnr/bnr_chikako300.jpg";
			imgs[17] = "http://blog.ti-da.net/common/img/president/bnr/bnr_ozaki300.jpg";
			imgs[18] = "http://blog.ti-da.net/common/img/president/bnr/bnr_arakaki300.jpg";
			imgs[19] = "http://blog.ti-da.net/common/img/president/bnr/bnr_shingaki300.jpg";
			imgs[20] = "http://blog.ti-da.net/common/img/president/bnr/bnr_toru_higa300.jpg";
			imgs[21] = "http://blog.ti-da.net/common/img/president/bnr/bnr_godai300.jpg";
			imgs[22] = "http://blog.ti-da.net/common/img/president/bnr/bnr_usami300.jpg";

n = Math.floor(Math.random()*jmps.length);
document.write("<a href='"+jmps[n]+"' target='_blank'>");
document.write("<img src='"+imgs[n]+"' border='0'>");
document.write("<br>");

document.write("</a>");
