jQuery(function($) {
  $("#free-call-form #phone")
    .focusin(function(e){if($(this).attr('value') == $(this).attr('rel')) $(this).attr('value', '+7').css({color:'#3A3939'});})
    .focusout(function(e){if($(this).attr('value') == '' || $(this).attr('value') == '+7') $(this).attr('value', $(this).attr('rel')).css({color:''});});

  $("#free-call-form").submit(function(e){
    var phone = $("#free-call-form #phone").attr('value');
    if(phone != $("#free-call-form #phone").attr('rel') && /^\+7[\d]{10}$/.test(phone)){
      $("#free-call-result").text("Отправка номера...");
      jQuery.post('/scripts/profialt.php', {frmNum: phone}, function(result, status){
        if(result === null || result == 0){
          $("#free-call-result").text("error");
        }else{
          $("#free-call-result").text("Спасибо! Ожидайте звонка");
          $("#free-call-form #phone").attr('value','').focusout();
        }
      });
    }else{
      $("#free-call-result").text("Введите корректный номер телефона");
    }
    $("#free-call-result").show();
    return false;
  });
});

