/*トップ中央下段のギンパックをランダムに表示する*/

var GINPACK_QTY = 5;//要素の総数

/*ページがロードされたらギンパックすべての要素をdisplay:none;にする*/
function initGinpack(){
	for(i=1;i<=GINPACK_QTY;i++){
		document.getElementById("ginpoTopGinpack" + i).style.display = "none";
	}
	
	displaySelectedElement();
}

/*乱数で一つの要素を選択し、その要素をdisplay:block;に変更して表示させる*/
function displaySelectedElement(){
	var selectNumber = (Math.floor(Math.random() * 5)) + 1;
	document.getElementById("ginpoTopGinpack" + selectNumber).style.display = "block";
}
