<!--// ランダムに画像を表示するjmp = new Array();img = new Array();// ジャンプ先のアドレス(数字は画像と対応)jmp[0] = "/gooditem/other/whc001.html";jmp[1] = "/gooditem/other/whc001.html";// 画像のアドレス(数字はジャンプ先のアドレスと対応)img[0] = "/topimg/whc001_1.jpg";img[1] = "/topimg/whc001_2.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>");//-->