// メインヴィジュアルのランダム表示
var imglist = new Array(
	"https://sv72.xserver.jp/~nomotto/nomotto.net/img/visual_01.jpg",
	"https://sv72.xserver.jp/~nomotto/nomotto.net/img/visual_02.jpg",
	"https://sv72.xserver.jp/~nomotto/nomotto.net/img/visual_03.jpg",
	"https://sv72.xserver.jp/~nomotto/nomotto.net/img/visual_04.jpg",
	"https://sv72.xserver.jp/~nomotto/nomotto.net/img/visual_05.jpg",
	"https://sv72.xserver.jp/~nomotto/nomotto.net/img/visual_06.jpg");
var selectnum = Math.floor((Math.random() * 100)) % imglist.length;
var output = "<img src=" + imglist[selectnum] + " width='760' height='150' alt='のもと酒店メインイメージ' class='mainvisual' />";
