// JavaScript Document
function display(){

var ad = 6;

document.write('<table style="width:203px;">');
for(n=0;n < ad;n++){
document.write('<tr><td style="text-align:left;line-height:120%;font-size:12px;padding:8px;border-bottom:#aaaaaa 1px dotted;">');
random();
document.write('</td></tr>');}

document.write('</table>');
document.write('');
}

function random()
{

if(n == 0)
{
title = new Array(6); 
img = new Array(title.length);
text1 = new Array(title.length);
text2 = new Array(title.length);
text3 = new Array(title.length);
text4 = new Array(title.length);
text5 = new Array(title.length);

title[0]="東北担当「岩手県」";
img[0]="files/sasaki.jpg";
text1[0] = "離婚に悩むあなたを優しく包み込む癒し系の離婚専門家";
text2[0] = "運営サイト：";
text3[0] = "http://rikonria.com/member/sasaki/sasakiprof.html";
text4[0] = "ささき陽子事務所";
text5[0]="佐々木陽子";

title[1]="関西担当「大阪府」";
img[1]="files/ueda.jpg";
text1[1] = "離婚問題・夫婦問題を解決に導く離婚アドバイザー！";
text2[1] = "運営サイト：";
text3[1] = "http://rikonria.com/member/ueda/uedaprof.html";
text4[1] = "大阪府の離婚相談所";
text5[1]="植田香代子";

title[2]="関西担当「兵庫県」";
img[2]="files/miyamoto.jpg";
text1[2] = "国際離婚をも取り扱う、切れ味抜群の若きエース！";
text2[2] = "運営サイト：";
text3[2] = "http://rikonria.com/member/miyamoto/miyamotoprof.html";
text4[2] = "離婚救済事務所";
text5[2]="宮本健吾";

title[3]="中国担当「岡山県」";
img[3]="files/nishida.jpg";
text1[3] = "心の問題も含めて離婚問題を解決したい離婚専門行政書士";
text2[3] = "運営サイト：";
text3[3] = "http://rikonria.com/member/nishida/nishidaprof.html";
text4[3] = "離婚救急NET";
text5[3]="西田和雅";

title[4]="四国担当「岡山県」";
img[4]="files/mukai.jpg";
text1[4] = "倉敷市児島から四国全域をサポートする離婚専門家！";
text2[4] = "運営サイト：";
text3[4] = "http://rikonria.com/member/mukai/mukaiprof.html";
text4[4] = "円満離婚への道しるべ";
text5[4]="向井謙彰";

title[5]="関東担当「茨城県」";
img[5]="files/watanabe.jpg";
text1[5] = "よろず相談歴30年という実績抜群の相談業務の大ベテラン";
text2[5] = "運営サイト：";
text3[5] = "http://rikonria.com/member/wantanabe/watanabeprof.html";
text4[5] = "茨城県の離婚相談室";
text5[5]="渡辺隆";

}

i = Math.floor(Math.random( ) * title.length);
document.write('<div style="background-color:#eeeeee;border:#bbbbbb 1px solid;padding:2px;">'+title[i]+'</div>'); 
document.write('<div style="text-align:center;margin-top:5px;background-color:#efffef;"><img src="'+img[i]+'" width="96px" height="112px"></div>');
document.write('<div style="color:#666666;">'+ text5[i]+'</div>'); 
document.write(text1[i]);
document.write('<br>'+ text2[i]);
document.write('<br><a target="_blank" href="'+text3[i] +'">'+ text4[i]+'</a>');
title.splice(i,1);
img.splice(i,1);
text1.splice(i,1);
text2.splice(i,1);
text3.splice(i,1);
text4.splice(i,1);
text5.splice(i,1);
}
