jmp = new Array();
img = new Array();


// ジャンプ先のアドレス(数字は画像と対応)
jmp[0] = "/products/list-50.html";
jmp[1] = "/products/list-33.html";


// 画像のアドレス(数字はジャンプ先のアドレスと対応)
img[0] = "user_data/packages/stonegarden01/img/main/image_200912.jpg";
img[1] = "user_data/packages/stonegarden01/img/main/image_201001.jpg";


function random_img(){
        n = Math.floor(Math.random()*jmp.length);
		document.write("<a href='"+jmp[n]+"'>");
		document.write("<img src='"+img[n]+"' border='0'>");
		document.write("</a>");
}
