$(document).ready(function(){
	$('#f_cadastro').ajaxForm({success: showResponse, beforeSubmit: showAguarde,dataType:  'json', clearForm: false }); 
});

function showAguarde(formData, jqForm, options){
	$('#resposta').css('color', 'black');
	$('#resposta').css('visibility','visible');
	$('#resposta').css('font-weight','bold');
	$('#resposta').html('Aguarde...');
	$('#btCadastro').attr("disabled","disabled");
	text = '';
	var_contato = false;
	for(i in formData){
		if(formData[i].name == 'nome' && formData[i].value == '' )
			text += " - Campo Nome obrigatório\n";
		if(formData[i].name == 'email' && formData[i].value != '' )
			var_contato = true;

	}
	
	if(var_contato == false)
		text += " - Por favor informe seu email.";
	
	if (text != '') {
		alert(text);
		$('#resposta').html('');
		$('#btCadastro').removeAttr("disabled");
		return false;
	}

}

function showResponse(responseText, statusText){
	$('#resposta').html('');
	$('#btCadastro').removeAttr("disabled");
	if (responseText['send'] == 'ok') {
		$('#f_cadastro').clearForm();
		alert('Enviado com Sucesso');
		
	}else if (responseText['send'] == 'erro') {
		alert(responseText['msg']);
	}else{
		alert('Erro tente novamente');
	}
}