$(document).ready(function() {
  $('#mobile_btn a').click(function(e) {
    if ($('#mobile_navi').is(':hidden')) {
      $('#mobile_navi').fadeIn('fast');
      $('#mobile_navi_thanks').hide();
    }
  });
  $('form.post_mobile_form').submit(function (e) {
    e.preventDefault();
    var alt = $(this).find('.alertbox').eq(0);
    var account = $('input[name="account"]',$(this)).val();
    var domain = $('select[name="domain"]',$(this)).val();
    if (account.length==0||domain.length==0||!account.match(/^[a-zA-Z0-9_\.\-\+\?\/]+$/)) {
      alt.find('.alert').html('メールアドレスを正しく入力してください');
      alt.show();
    } else {
      $('#mobile_navi').hide();
      alt.hide();
      $.post('recipe.php', $(this).serialize(), function(){
        $('#mobile_navi_thanks').fadeIn('fast').html(account+'@'+domain+' にメールを送信しました。<br />メールが届かない場合はドメイン指定受信設定をご確認下さい。');
      });
      this.reset();
    }
  });
});
