$(function()
{
	$("#frmEntry").submit(function()
	{
		var d = zen_make_params("#frmEntry", "confirm");
		$.post(
			location.href,
			d,
			function (ret)
			{
				if (ret.status == "SUCCESS")
				{
					location.href = "/entry/confirm.html";
				}
				else if(ret.status == "OVERLAP")
				{
					if(confirm(ret.msg))
					{
						location.href = "/entry/confirm.html";
					}
				}
				else
				{
					alert(ret.msg);
				}
			},
			"json"
		);
		return false;
	});

	// E-MAIL欄関連
	$("#txt_mail").val("フリーメール・携帯メールでの登録はできません。");
	$("#txt_mail").css({"color":"#999999"});

	//$("#txt_mail").click(function()
	$("#txt_mail").focus(function()
	{
		if($("#txt_mail").val() == "フリーメール・携帯メールでの登録はできません。")
		{
			$(this).val("");
			$("#txt_mail").css({"color":"#000000"});
		}
	});

	$("#txt_equipment").keyup(function()
	{
		if($(this).val() != "")
		{
			$("#chk_is_sonota").attr("checked", "checked");
		}

		if($(this).val() == "")
		{
			$("#chk_is_sonota").attr("checked", "");
		}
	});

});

