// ランダムに画像を表示する
function changeimg(){
jmp = new Array();
img = new Array();
// ジャンプ先のアドレス(数字は画像と対応)
jmp[0] = "http://www.ec-life.co.jp/post/index2_4.html";
jmp[1] = "http://www.ec-life.co.jp/chair_table/index2_2.html";
jmp[2] = "http://www.ec-life.co.jp/planter/index12.html";
// 画像のアドレス(数字はジャンプ先のアドレスと対応)
img[0] = "images/top_bn1.jpg";
img[1] = "images/top_bn9.jpg";
img[2] = "images/top_bn13.jpg";
n = Math.floor(Math.random()*jmp.length);
document.write("<a href='"+jmp[n]+"'>");
document.write("<img src='"+img[n]+"' border='0'>");
document.write("</a>");
}
function changeimg2(){
jmp = new Array();
img = new Array();
// ジャンプ先のアドレス(数字は画像と対応)
jmp[0] = "http://www.ec-life.co.jp/planter/index9_3.html";
jmp[1] = "http://www.ec-life.co.jp/garden_living/index4_2.html";
jmp[2] = "http://www.ec-life.co.jp/awning/index6.html";
// 画像のアドレス(数字はジャンプ先のアドレスと対応)
img[0] = "images/top_bn2.jpg";
img[1] = "images/top_bn11.jpg";
img[2] = "images/top_bn14.jpg";
n = Math.floor(Math.random()*jmp.length);
document.write("<a href='"+jmp[n]+"'>");
document.write("<img src='"+img[n]+"' border='0'>");
document.write("</a>");
}