// ランダムに画像を表示する
jmp = new Array();
img = new Array();
// ジャンプ先のアドレス(数字は画像と対応)
jmp[0] = "ipm/";
jmp[1] = "jass_apparel/";

// 画像のアドレス(数字はジャンプ先のアドレスと対応)
img[0] = "img/ipm.gif";
img[1] = "img/top-jass.jpg";


n = Math.floor(Math.random()*jmp.length);
document.write("<a href='"+jmp[n]+"'>");
document.write("<img src='"+img[n]+"'height='250' width='900' border='0' alt='アパレル業界へ向けの各種ITソリューションです' galleryimg='no' />");
document.write("</a>");
