
	document.write("<ul>"); 

	jumpURL = new Array();
	imgURL = new Array();
	altTXT = new Array();

	jumpURL[0] = "construction/01.html";
	jumpURL[1] = "construction/02.html";
	jumpURL[2] = "construction/03.html";
	jumpURL[3] = "construction/04.html";
	jumpURL[4] = "construction/05.html";
	jumpURL[5] = "construction/06.html";
	jumpURL[6] = "construction/07.html";
	jumpURL[7] = "construction/08.html";
	jumpURL[8] = "construction/09.html";
	jumpURL[9] = "construction/10.html";
	jumpURL[10] = "construction/11.html";
	jumpURL[11] = "construction/12.html";
	jumpURL[12] = "construction/13.html";
	jumpURL[13] = "construction/14.html";
	jumpURL[14] = "construction/15.html";
	jumpURL[15] = "construction/16.html";
	jumpURL[16] = "construction/17.html";
	jumpURL[17] = "construction/18.html";

	imgURL[0] = "images/construction/photo-0001-00.jpg";
	imgURL[1] = "images/construction/photo-0002-01.jpg";
	imgURL[2] = "images/construction/photo-0003-03.jpg";
	imgURL[3] = "images/construction/photo-0004-01.jpg";
	imgURL[4] = "images/construction/photo-0005-01.jpg";
	imgURL[5] = "images/construction/photo-0006-01.jpg";
	imgURL[6] = "images/construction/photo-0007-00.jpg";
	imgURL[7] = "images/construction/photo-0008-00.jpg";
	imgURL[8] = "images/construction/photo-0009-01.jpg";
	imgURL[9] = "images/construction/photo-0010-00.jpg";
	imgURL[10] = "images/construction/photo-0011-00.jpg";
	imgURL[11] = "images/construction/photo-0012-01.jpg";
	imgURL[12] = "images/construction/photo-0013-01.jpg";
	imgURL[13] = "images/construction/photo-0014-00.jpg";
	imgURL[14] = "images/construction/photo-0015-03.jpg";
	imgURL[15] = "images/construction/photo-0016-05.jpg";
	imgURL[16] = "images/construction/photo-0017-05.jpg";
	imgURL[17] = "images/construction/photo-0018-00.jpg";

	altTXT[0] = "つながりの家";
	altTXT[1] = "吹き抜けのある家";
	altTXT[2] = "くつろぎを感じる家";
	altTXT[3] = "プライリックハウス";
	altTXT[4] = "丸太の眠る家";
	altTXT[5] = "地球にやさしいロハスの家";
	altTXT[6] = "家族が健康に暮らす家";
	altTXT[7] = "寛ぎの家";
	altTXT[8] = "自然素材の家";
	altTXT[9] = "至福の家";
	altTXT[10] = "わたしサイズの家";
	altTXT[11] = "家事楽キッチンの家";
	altTXT[12] = "快適エコライフ 和楽の家";
	altTXT[13] = "狭小地にかなえる理想空間の家";
	altTXT[14] = "笑顔が生まれる家";
	altTXT[15] = "優しい時間を刻む和の家";
	altTXT[16] = "スキップフロアのデザインハウス";
	altTXT[17] = "家族想いの2世帯住宅";

	n = Math.floor(Math.random()*jumpURL.length);	
	for (i=0; i <= 5; i++) {	
		document.write("<li>"); 
		document.write("<a href='"+jumpURL[n]+"'>"); 
		document.write("<img src='"+imgURL[n]+"' height='60' class='bo' alt='"+altTXT[n]+"' />"); 
		document.write("</a>");
		document.write("</li>");
		n= n + 1;		
		if(n >= jumpURL.length){
			n = 0;
		} 
	}
	
	document.write("</ul>");

