
function Randam_list_top() { 
jmp = new Array();
img = new Array();
ic_name = new Array();
comment = new Array();

// リストアドレス
jmp[0] = "ic/IC0038/index.html";
jmp[1] = "ic/IC0039/index.html";
jmp[2] = "ic/IC0040/index.html";
jmp[3] = "ic/IC0041/index.html";
jmp[4] = "ic/IC0042/index.html";
jmp[5] = "ic/IC0043/index.html";


// 画像のアドレス
img[0] = "ic/IC0038/img/profile_image.jpg";
img[1] = "ic/IC0039/img/profile_image.jpg";
img[2] = "ic/IC0040/img/profile_image.jpg";
img[3] = "ic/IC0041/img/profile_image.jpg";
img[4] = "ic/IC0042/img/profile_image.jpg";
img[5] = "ic/IC0043/img/profile_image.jpg";


// 名前・コメント
ic_name[0] = "佐川　久美子";
ic_name[1] = "小西 裕美";
ic_name[2] = "片寄　洋子 ";
ic_name[3] = "澤田　定子";
ic_name[4] = "上野　勲";
ic_name[5] = "古屋　博章";

comment[0] = "住まいは生き方　あなたの“しあわせ空間”をプロデュース";
comment[1] = "住まいとは人生そのものだと感じています。";
comment[2] = "自分らしい暮らし方、一緒にみつけましょう";
comment[3] = "オーダーすることのメリットをもっと伝えたい！";
comment[4] = "クライアントもびっくり！期待以上の感動と笑顔をあなたに";
comment[5] = "C.E.L.ING　「衣・食・住」会社のコンセプトは「衣・食・住」です。";




n = 0;
t = 0;


  while　( n == t)　{
 n = Math.floor(Math.random()*jmp.length);
 t = Math.floor(Math.random()*jmp.length);
  }
 
document.write("<tr><td width = '195' class = 'v_top'><br>");
document.write("<div class = 'font14'><a href='"+jmp[n]+"'>" + ic_name[n] + "</a></div><br>");
document.write("<div class = 'font12'>" + comment[n] + "</div></td>");
document.write("<td width = '5'> </td>");
document.write("<td width = '80' class = 'v_top'>");
document.write("<a href='"+jmp[n]+"'><img src='"+img[n]+"' border='1' width = '80' id = 'face_photo'></a></td></tr>");
document.write("<tr><td colspan = '3' height = '5'></td></tr>");
document.write("<tr><td colspan = '3' height = '1' bgcolor = '#888888'></td></tr>");
document.write("<tr><td colspan = '3' height = '5'></td></tr>");
document.write("<tr><td width = '195' class = 'v_top'><br>");
document.write("<div class = 'font14'><a href='"+jmp[t]+"'>" + ic_name[t] + "</a></div><br>");
document.write("<div class = 'font12'>" + comment[t] + "</div></td>");
document.write("<td width = '5'> </td>");
document.write("<td width = '80' class = 'v_top'>");
document.write("<a href='"+jmp[t]+"'><img src='"+img[t]+"' border='1' width = '80' id = 'face_photo'></a></td></tr>");
}
