function randomBanner(){// ランダムに画像を表示する
jmp = new Array();
img = new Array();
alt = new Array();
target = new Array();
// ジャンプ先のアドレス(数字は画像と対応)
jmp[0] = "/cs/list/taleschannel/festival2009/";
jmp[1] = "http://www.tv-toa.jp/";
jmp[2] = "http://www.tov-movie.net/";
jmp[3] = "http://bngb.qbist.co.jp/pc/index.html";
jmp[4] = "/cs/list/taleschannel/festival2010/";

// 画像のアドレス(数字はジャンプ先のアドレスと対応)
img[0] = "/cs/list/taleschannel/img/titleBn_festival2009.jpg";
img[1] = "/cs/list/taleschannel/img/titleBn_tvtoa.jpg";
img[2] = "/cs/list/taleschannel/img/titleBn_tovmovie.jpg";
img[3] = "/cs/list/taleschannel/img/titleBn_books.jpg";
img[4] = "/cs/list/taleschannel/img/titleBn_festival2010.jpg";

// 画像のalt(数字はジャンプ先のアドレスと対応)
alt[0] = "あの感動を再び！待望のファンイベント第2弾『テイルズ オブ フェスティバル ２００９』イベントDVD 好評発売中！！";
alt[1] = "テイルズ オブ ジ アビス スペシャルファンディスク DVD 12月22日発売決定！";
alt[2] = "「テイルズ オブ ヴェスペリア 〜The First Strike〜」 Blu-ray＆DVD＆UMD 5.28同時発売！";
alt[3] = "バンダイナムコゲームスブックス";
alt[4] = "『テイルズ オブ フェスティバル 2010』開催！ 日程：2010年6月5日（土）・6日（日）※2日3回公演 場所：パシフィコ横浜　国立大ホール";

// ターゲットの設定
target[0] = "_self";
target[1] = "_blank";
target[2] = "_blank";
target[3] = "_blank";
target[4] = "_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>");
}

