// ランダムに画像を表示する
function headimage()
{
img = new Array();
img[0] = "./image/201110/00.jpg";
img[1] = "./image/201110/01.jpg";
img[2] = "./image/201110/02.jpg";
img[3] = "./image/201110/03.jpg";
img[4] = "./image/201110/04.jpg";
img[5] = "./image/201110/05.jpg";
img[6] = "./image/201110/06.jpg";
img[7] = "./image/201110/07.jpg";
img[8] = "./image/201110/08.jpg";
img[9] = "./image/201110/09.jpg";
img[10] = "./image/201110/10.jpg";
img[11] = "./image/201110/11.jpg";
img[12] = "./image/201110/12.jpg";
img[13] = "./image/201110/13.jpg";
img[14] = "./image/201110/14.jpg";


n0=Math.floor(Math.random()*15);
n1=(n0+Math.floor(Math.random()*14)+1)%15;
n2=(n1+Math.floor(Math.random()*14)+1)%15;
n3=(n2+Math.floor(Math.random()*14)+1)%15;
n4=(n3+Math.floor(Math.random()*14)+1)%15;
n5=(n4+Math.floor(Math.random()*14)+1)%15;
n6=(n5+Math.floor(Math.random()*14)+1)%15;
n7=(n6+Math.floor(Math.random()*14)+1)%15;
n8=(n7+Math.floor(Math.random()*14)+1)%15;
n9=(n8+Math.floor(Math.random()*14)+1)%15;
n10=(n9+Math.floor(Math.random()*14)+1)%15;
n11=(n10+Math.floor(Math.random()*14)+1)%15;
n12=(n11+Math.floor(Math.random()*14)+1)%15;
n13=(n12+Math.floor(Math.random()*14)+1)%15;
n14=(n13+Math.floor(Math.random()*14)+1)%15;

document.write("<img src='"+img[n0]+"' border='0' width='762' height='400' alt='エコカフェいいだ'>");
document.write("<img src='"+img[n1]+"' border='0' width='762' height='400' alt='エコカフェいいだ'>");
document.write("<img src='"+img[n2]+"' border='0' width='762' height='400' alt='エコカフェいいだ'>");
document.write("<img src='"+img[n3]+"' border='0' width='762' height='400' alt='エコカフェいいだ'>");
document.write("<img src='"+img[n4]+"' border='0' width='762' height='400' alt='エコカフェいいだ'>");
document.write("<img src='"+img[n5]+"' border='0' width='762' height='400' alt='エコカフェいいだ'>");
document.write("<img src='"+img[n6]+"' border='0' width='762' height='400' alt='エコカフェいいだ'>");
document.write("<img src='"+img[n7]+"' border='0' width='762' height='400' alt='エコカフェいいだ'>");
document.write("<img src='"+img[n8]+"' border='0' width='762' height='400' alt='エコカフェいいだ'>");
document.write("<img src='"+img[n9]+"' border='0' width='762' height='400' alt='エコカフェいいだ'>");
document.write("<img src='"+img[n10]+"' border='0' width='762' height='400' alt='エコカフェいいだ'>");
document.write("<img src='"+img[n11]+"' border='0' width='762' height='400' alt='エコカフェいいだ'>");
document.write("<img src='"+img[n12]+"' border='0' width='762' height='400' alt='エコカフェいいだ'>");
document.write("<img src='"+img[n13]+"' border='0' width='762' height='400' alt='エコカフェいいだ'>");
document.write("<img src='"+img[n14]+"' border='0' width='762' height='400' alt='エコカフェいいだ'>");

}
