<!--

var shoptext = new Array(
	'こんばんは！季節の変わり目ですので、体調を崩さないようにしてくださいね。<br>メールでのお問合せは24時間受付けておりますので、お気軽にご連絡ください！',
	'こんばんは！南の地域からは花の便りが届くようになりましたね。<br>メールでのお問合せは24時間受付けておりますので、お気軽にご連絡ください！'
	);


var figure = shoptext.length;

for (i=0; i<100; i++) 
{
	n1 = Math.floor(Math.random() * figure);
	n2 = Math.floor(Math.random() * figure);
	n = shoptext[n1];
	shoptext[n1] = shoptext[n2];
	shoptext[n2] = n;
}

function randtext(cnt){
	document.write(shoptext[cnt]);
}


//-->
