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


n0=Math.floor(Math.random()*10);
n1=(n0+Math.floor(Math.random()*9)+1)%10;
n2=(n1+Math.floor(Math.random()*9)+1)%10;
n3=(n2+Math.floor(Math.random()*9)+1)%10;
n4=(n3+Math.floor(Math.random()*9)+1)%10;
n5=(n4+Math.floor(Math.random()*9)+1)%10;
n6=(n5+Math.floor(Math.random()*9)+1)%10;
n7=(n6+Math.floor(Math.random()*9)+1)%10;
n8=(n7+Math.floor(Math.random()*9)+1)%10;
n9=(n8+Math.floor(Math.random()*9)+1)%10;

document.write("<a href='http://www.yasuharu.jp'><img src='"+img[n0]+"' border='0' width='527' height='335' alt='小島康晴オフィシャルサイト'></a>");
document.write("<a href='http://www.yasuharu.jp'><img src='"+img[n1]+"' border='0' width='527' height='335' alt='小島康晴オフィシャルサイト'></a>");
document.write("<a href='http://www.yasuharu.jp'><img src='"+img[n2]+"' border='0' width='527' height='335' alt='小島康晴オフィシャルサイト'></a>");
document.write("<a href='http://www.yasuharu.jp'><img src='"+img[n3]+"' border='0' width='527' height='335' alt='小島康晴オフィシャルサイト'></a>");
document.write("<a href='http://www.yasuharu.jp'><img src='"+img[n4]+"' border='0' width='527' height='335' alt='小島康晴オフィシャルサイト'></a>");
document.write("<a href='http://www.yasuharu.jp'><img src='"+img[n5]+"' border='0' width='527' height='335' alt='小島康晴オフィシャルサイト'></a>");
document.write("<a href='http://www.yasuharu.jp'><img src='"+img[n6]+"' border='0' width='527' height='335' alt='小島康晴オフィシャルサイト'></a>");
document.write("<a href='http://www.yasuharu.jp'><img src='"+img[n7]+"' border='0' width='527' height='335' alt='小島康晴オフィシャルサイト'></a>");
document.write("<a href='http://www.yasuharu.jp'><img src='"+img[n8]+"' border='0' width='527' height='335' alt='小島康晴オフィシャルサイト'></a>");
document.write("<a href='http://www.yasuharu.jp'><img src='"+img[n9]+"' border='0' width='527' height='335' alt='小島康晴オフィシャルサイト'></a>");

}
