function randomBanner(){// ランダムに画像を表示する
jmp = new Array();
img = new Array();
alt = new Array();
target = new Array();
// ジャンプ先のアドレス(数字は画像と対応)
jmp[0] = "http://bngb.qbist.co.jp/pc/tof2010/index";
jmp[1] = "http://vivamaga.jp";
jmp[2] = "http://bngb.qbist.co.jp/pc/toc/index.html";
jmp[3] = "http://tox.namco-ch.net/";
jmp[4] = "http://toi-r.namco-ch.net/";
jmp[5] = "http://tb.namco-ch.net/";

// 画像のアドレス(数字はジャンプ先のアドレスと対応)
img[0] = "/cs/list/taleschannel/img/titleBn_tofes2010.jpg";
img[1] = "/cs/list/taleschannel/img/titleBn_magazine.jpg";
img[2] = "/cs/list/taleschannel/img/titleBn_to_chronicle.jpg";
img[3] = "/cs/list/taleschannel/img/titleBn_tox.jpg";
img[4] = "/cs/list/taleschannel/img/titleBn_toi_r.jpg";
img[5] = "/cs/list/taleschannel/img/titleBn_totb.jpg";

// 画像のalt(数字はジャンプ先のアドレスと対応)
alt[0] = "テイルズ オブ フェスティバル2010 公式フォトレポート絶賛発売中！！";
alt[1] = "ビバ☆テイルズ オブ マガジン絶賛発売中！！";
alt[2] = "テイルズ オブ クロニクル 『テイルズ オブ』シリーズ15周年記念公式設定資料集";
alt[3] = "PS3「テイルズ オブ エクシリア」好評発売中";
alt[4] = "PS Vita「テイルズ オブ イノセンスR」好評発売中";
alt[5] = "PSP「テイルズ オブ ザ ヒーローズ ツインブレイヴ」2012年2月23日発売予定";

// ターゲットの設定
target[0] = "_blank";
target[1] = "_blank";
target[2] = "_blank";
target[3] = "_self";
target[4] = "_self";
target[5] = "_self";

n = Math.floor(Math.random()*jmp.length);

document.write("<a href='"+jmp[n]+"' target='"+target[n]+"'>");
document.write("<img src='"+img[n]+"' alt='"+alt[n]+"' border='0'>");
document.write("</a>");
}


