function random(){

url = new Array(6); /*合計画像数を入れる*/
img = new Array(url.length); 

i = Math.floor(Math.random( ) * url.length);

url[0]="http://www.to-ru-stone.com/";
img[0]="<img src='http://sijima.com/img/top_img1.jpg' width='830' height='300' alt='パワーストーン' />";

url[1]="http://sijima.com/crystal_bowl.html";
img[1]="<img src='http://sijima.com/img/top_img2.jpg' width='830' height='300' alt='クリスタルボール' />";

url[2]="http://sijima.com/flower_essence.html";
img[2]="<img src='http://sijima.com/img/top_img3.jpg' width='830' height='300' alt='フラワーエッセンス' />";

url[3]="http://sijima.com/pet_art.html";
img[3]="<img src='http://sijima.com/img/top_img4.jpg' width='830' height='300' alt='ペット＆アートセラピー' />";

url[4]="http://sijima.com/flower_essence.html";
img[4]="<img src='http://sijima.com/img/top_img5.jpg' width='830' height='300' alt='フラワーエッセンス' />";

url[5]="http://www.to-ru-stone.com/";
img[5]="<img src='http://sijima.com/img/top_img6.jpg' width='830' height='300' alt='パワーストーン' />";
/*これ以降は、3,4,5と数字を増やす*/

document.write('<a href="'+url[i]+'">'); 
document.write(''+img[i]+'</a>');

}
