//textareaのコメント処理

window.onload = function(){



	document.getElementById("inquiry_text").onfocus = function(){

		if (this.value == "お問い合わせの内容を入力して下さい。")

		this.value = "";

	}



	document.getElementById("inquiry_text").onblur = function(){

		if(this.value == "")

		this.value = "お問い合わせの内容を入力して下さい。";

	}



}


