$(document).ready(function() {
	testAjax('nom');
	testAjax('email');
	testAjax('sujet');
	testAjax('message');
});

function finishAjax(id, response, idLoading) {
  $('#'+idLoading).hide();
  $('#'+id).html(unescape(response));
  $('#'+id).fadeIn();
}

function testAjax(id){
// firstname
	$('#'+id+'Loading').hide();
	$('#'+id).change(function(){
	  $('#'+id+'Result').hide();
	  $('#'+id+'Loading').show();
      $.post("../contact/check_ajax_form.php", {
        valueForm: $('#'+id).val(),
		nameForm: $('#'+id).attr("name"),
      }, function(response){
        $('#'+id+'Result').fadeOut();
        setTimeout("finishAjax('"+id+"Result', '"+escape(response)+"', '"+id+"Loading')", 400);
      });
    	return false;
	});
}
