//	top 
// ランダムに画像を表示する
var rndImg = function(){
jmp = new Array();
img = new Array();
// ジャンプ先のアドレス(数字は画像と対応)
jmp[0] = "about_us/index.html";
jmp[1] = "about_us/index.html";
jmp[2] = "about_us/index.html";
jmp[3] = "about_us/index.html";
// 画像のアドレス(数字はジャンプ先のアドレスと対応)
img[0] = "index_images/top_rnd0.jpg";
img[1] = "index_images/top_rnd1.jpg";
img[2] = "index_images/top_rnd2.jpg";
img[3] = "index_images/top_rnd3.jpg";

n = Math.floor(Math.random()*jmp.length);
document.write("<a href='"+jmp[n]+"' onclick='javascript: pageTracker._trackPageview(\"/click/index.html?purpose=special_1012_christmas\");'>");
document.write("<img src='"+img[n]+"' border='0'>");
document.write("</a>");
}

