jQuery(document).ready(function(){
	jQuery("#checkMail").submit(function(){
		jQuery("#avancar").attr("value", "Verificando ....");
		jQuery("#avancar").attr("disabled", true);
		jQuery.post(
			"http://www.quintadigital.com.br/site/checkemail/",
			{email: jQuery("#email").val()}, 
			function(html){
				if (html=="falso") {
					alert("Desculpe, mas seu e-mail não está na lista permitida para a palestra.");
					jQuery("#avancar").attr("value", "Avançar >>");
					jQuery("#avancar").attr("disabled", false);
				}
				else {
					jQuery("#result").html(html);
					jQuery("#formPg").submit();
					jQuery("#avancar").attr("value", "Confirmado!");
				}
			}
		);	
		return false;
	});
});