<!--

//バナーイメージを定義
var subimages = new Array(
	'<a href="spa_info/hananoyu_promo.html" target="_blank"><img src="share/bnr_hananoyu.jpg" alt="スーパー健康ランド 華のゆ" border="0"  width="196" height="54" /></a>',
	'<a href="open_plan/index.html""><img src="share/bnr_open.jpg" alt="開業予定一覧" border="0"  width="196" height="54" /></a>',
	'<a href="employ/index.php"><img src="share/bnr_recruit_mid.jpg" alt="中途採用" border="0"  width="196" height="54" /></a>',
	'<a href="freemag/index.html"><img src="share/bnr_tabibitoyo.jpg" alt="旅のサポートマガジン 旅人よ" border="0"  width="196" height="54" /></a>',
	'<a href="http://www.gift-land.com/partner/route-inn/" target="_blank"><img src="share/bnr_tabi_club.jpg" alt="ルートイン通販 旅人よ倶楽部" border="0"  width="196" height="54" /></a>',
	'<a href="hananomai/top.htm" target="_blank"><img src="share/bnr_hananomai.jpg" alt="はなの舞" border="0"  width="196" height="54" /></a>');

//バナーの数を調べます。
var figure = subimages.length;

for (i=0; i<100; i++) //　100はシャッフルする回数
{
	n1 = Math.floor(Math.random() * figure);
	n2 = Math.floor(Math.random() * figure);
	n = subimages[n1];
	subimages[n1] = subimages[n2];
	subimages[n2] = n;
}

//バナーイメージを呼び出す関数
function putsubimage(cnt){
	document.write(subimages[cnt]);
}

//-->

