$(function() {
	$("div#map_control ul#map_control_lt li#icon_mobile a#mail").click(function() {
		$("#mail_fm").css("display","inline");
		$(".mail_text").html("現在の地図の位置・縮尺で中心にピンマーカーを表示したURLを記載したメールを送信します。<br />「件名」「メール本文」「送信先メールアドレス」を入力し、「送信」ボタンをクリックしてください。");
	});
	$("form#mail_fm").submit(function(){
		//エラー初期化
		$("p.mail_error").remove();
		$("dl dd").removeClass("error");

		$(":text,textarea").filter(".validate").each(function(){
			//件名のチェック
			$(this).filter(".subject").each(function(){
				if($(this).val()==""){
					$(this).parent().addClass("error");
					$(this).parent().append("<p class='mail_error'>←必須入力項目です</p>");
				}
			})
			//メールアドレスの必須チェック
			$(this).filter(".mail").each(function(){
				if($(this).val()==""){
					$(this).parent().addClass("error");
					$(this).parent().append("<p class='mail_error'>←必須入力項目です</p>");
				}
				else{
					//メールアドレスの必須チェック
					$(this).filter(".mail").each(function(){
						if($(this).val() && !$(this).val().match(/.+@.+\..+/g)){
							$(this).parent().addClass("error");
							$(this).parent().append("<p class='mail_error'>←メールアドレスの形式が異なります</p>");
						}
					})
				}
			})
		})
		//エラーの際の処理
		if($("p.mail_error").size() > 0){
			return false;
		}
		else{
			$.ajax({
				type : "POST",
				timeout : 10000,
				url : "./sendmail.php",
				data: $("form").serialize(),
				success : function(msg){
					$(".mail_text").html("<b>" +$("#mail_to").val() + "</b> 宛にメールの送信を完了しました。");
					$("#mail_fm").css("display","none");
					$("#mail_subject").val("今ここにいます!!");
					$("#mail_body").val("");
					$("#mail_to").val("");
				},
				error : function(msg){
					$(".mail_text").text("メールの送信に失敗しました。");
				}
			});
			return false;
		}
	})
});
