$(function(){
	$("#g_name").blur(function(){
		if(this.value=="") {
			$("#g_name").val('名前(任意)');
		}
	});
	
	$("#g_comment").blur(function(){
		if(this.value=="") {
			$("#g_comment").val('一言');
		}
	});
	
	$("#g_name").click(function(){
		if(this.value=="名前(任意)") {
			$("#g_name").val('');
		}
	});
	
	$("#g_comment").click(function(){
		if(this.value=="一言") {
			$("#g_comment").val('');
		}
	});
	
	$("#post_g_comment").click(function(){
		name = $("#g_name").val();
		comment = $("#g_comment").val();
		if (comment=='' || comment=='一言') {
		} else {
			$.post(
				"../comment_post.php",
				{ name: name, comment: comment },
				function(){
					$("#g_name").val('');
					$("#g_comment").val('').css({'height':'1.5em','overflow-y':'hidden'});
				}
			);
		}
	});
});
