// ランダムに画像を表示する
jmp = new Array();
img = new Array();
alt = new Array();

// ジャンプ先のアドレス(数字は画像と対応)
jmp[0] = "./";
jmp[1] = "./";
jmp[2] = "./";
jmp[3] = "./";
jmp[4] = "./";

// 画像のアドレス(数字はジャンプ先のアドレスと対応)
img[0] = "images/top_pic02.jpg";
img[1] = "images/top_pic03.jpg";
img[2] = "images/top_pic04.jpg";
img[3] = "images/top_pic05.jpg";
img[4] = "images/top_pic06.jpg";

// 画像のALT
alt[0] = "育む、羽ばたく、知と心";
alt[1] = "育む、羽ばたく、知と心";
alt[2] = "育む、羽ばたく、知と心";
alt[3] = "育む、羽ばたく、知と心";
alt[4] = "育む、羽ばたく、知と心";


n = Math.floor(Math.random()*img.length);
document.write("<img src='"+img[n]+"' alt='"+alt[n]+"' width='947' height='210' />");


