window.onload = function(){

	

	//メッセージを表示させる場合は「1」を、非表示の場合はそれ以外（空欄可）

	var msgVisible = "0"

	//表示させる場合のメッセージ内容

	

	//メールのお問い合わせ

	var msgText1 =

		'<strong>＜年末年始休暇中のメールでのお問い合せについて＞</strong><br>2009年12月26日（土）から2010年1月4日（月）まで休暇のため、12月25日（金）以降にいただいたメールへのお返事は、2010年1月5日（火）より順次お返事致します。<br>また、いただいた順にご返答していきますため、休み明けもメールへのお返事は通常時より時間がかかることが予想されますので、予めご了承の程お願い申し上げます。'

	

	//カタログ請求

	var msgText2 =

		'<strong>＜年末年始休暇中のカタログ発送について＞</strong><br>2009年12月25日（金）〜2010年1月4日（月）の期間はカタログ発送作業をお休みさせていただきます。<br>この期間にご注文いただいたカタログは、1月5日（火）以降に順次発送させていただきます。<br>予めご了承の程お願い申し上げます。'

	

	//その他

	var msgText3 =

		'<strong>年末年始の受付休止期間：<br>2009年12月26日（土）〜2010年1月4日（月）</strong>'

		

	//id:holiday_msg1 表示・非表示

	

	if(msgVisible == 1){

		$$(".holiday_msg1").each(function(obj){								

			obj.style.display = "block";

			obj.innerHTML += msgText1;

		});

		

		$$(".holiday_msg2").each(function(obj){								

			obj.style.display = "block";

			obj.innerHTML += msgText2;

		});



		$$(".holiday_msg3").each(function(obj){								

			obj.style.display = "block";

			obj.innerHTML += msgText3;

		});

		

		

	}else{

		$$(".holiday_msg1").each(function(obj){								

			obj.style.display = "none";

		});

		$$(".holiday_msg2").each(function(obj){								

			obj.style.display = "none";

		});



		$$(".holiday_msg3").each(function(obj){								

			obj.style.display = "none";

		});

		

	}

}