// JavaScript Document

function v_rand() {
		
	for ( i=0 ; i<4 ; i++ ) {
		
		j = i+1;
		
		document.getElementById("rand_"+j).style.display = "none"
		
	}
		
	rand_n = Math.floor( Math.random() * 4 ) + 1;
		
	document.getElementById("rand_"+rand_n).style.display = "block"
	
	//alert("ボトムリンク事例のランダム表示処理実行");
	//alert("ボトムリンク事例のランダム表示処理実行:\n今回は id=rand_"+rand_n+" が表示されます");
		
}
