//ショップの入り口をランダムリンク
//
//	表示する数をmax=に設定してlink_urlにリンク先アドレス、img_urlに画像ファイル名 alttxtに大体テキストを入力して下さい。
//	項目を増やすたびに[]の中の数を増やしてください。（0から始まることに注意)
//

function randomlink(){

	var max=4;	//表示最大数
	
	//乱数発生
	var no=Math.floor(Math.random()*max);
	
	//配列の設定
	link_url=new Array(max);	img_url=new Array(max);	alttxt=new Array(max);
	
	//実データ
	link_url[0]="http://www.romoshop.jp/html/newpage.html?code=8";	img_url[0]="item09.jpg";	alttxt[0]="能作の風鈴";
	link_url[1]="http://www.romoshop.jp/shopdetail/009000000028/";	img_url[1]="item04.jpg";	alttxt[1]="マニラ麻のカゴバッグ";
	link_url[2]="http://www.romoshop.jp/shopbrand/012/O/";	img_url[2]="item05.jpg";	alttxt[2]="fog linen work";
	link_url[3]="http://www.romoshop.jp/shopbrand/013/O/";	img_url[3]="item07.jpg";	alttxt[3]="Made in COLKINIKHA メイドインコルキニカ";
			
	document.getElementById('shoplink').innerHTML = "<a href=\"" + link_url[no] + "\" target=\"_blank\"><img src=\"./img/item/" + img_url[no] + "\" alt=\""+ alttxt[no] +"\"></a>";
}	
