// JavaScript Document
//Global vars:
var wForm = 0;

$(document).ready(function() { 
						   
	$('#cac').hide();
	$('#agendamento').hide();
	$('#consult').hide();
	
	$("input[@name=radioMaluco]").click( function () {
		var optN = $("input[@name=radioMaluco][@checked]").val();
		switch (optN){
			case '1':
				$('#cac').show('fast');
				$('#agendamento').hide('fast');
				$('#consult').hide('fast');
				wForm = 1;
				$('#contatoAlerta').html("<span style=\"border:1px solid #999999;background:#e7e7e7;padding:5px;display:block;\">Escolha abaixo a melhor op&ccedil;&atilde;o para voc&ecirc;</span>");
			break
			case '2':
				$('#cac').hide();
				$('#agendamento').show('fast');
				$('#consult').hide();
				wForm = 2;
				$('#contatoAlerta').html("<span style=\"border:1px solid #999999;background:#e7e7e7;padding:5px;display:block;\">Escolha abaixo a melhor op&ccedil;&atilde;o para voc&ecirc;</span>");
			break
			case '3':
				$('#cac').hide();
				$('#agendamento').hide();
				$('#consult').show('fast');
				wForm = 3;
				$('#contatoAlerta').html("<span style=\"border:1px solid #999999;background:#e7e7e7;padding:5px;display:block;\">Escolha abaixo a melhor op&ccedil;&atilde;o para voc&ecirc;</span>");
			break
		};
	} );
	
	//AjaxForm
    var options = { 
        target:        '#contatoAlerta',   // target element(s) to be updated with server response 
        beforeSubmit:  showRequest,  // pre-submit callback 
        success:       showResponse  // post-submit callback 
 
        // other available options: 
        //url:       url         // override for form's 'action' attribute 
        //type:      type        // 'get' or 'post', override for form's 'method' attribute 
        //dataType:  null        // 'xml', 'script', or 'json' (expected server response type) 
        //clearForm: true        // clear all form fields after successful submit 
        //resetForm: true        // reset the form after successful submit 
 
        // $.ajax options can be used here too, for example: 
        //timeout:   3000 
    }; 
 
    // bind to the form's submit event 
    $('#faleCacForm').submit(function() { 
        // inside event callbacks 'this' is the DOM element so we first 
        // wrap it in a jQuery object and then invoke ajaxSubmit 
        $(this).ajaxSubmit(options); 
 
        // !!! Important !!! 
        // always return false to prevent standard browser submit and page navigation 
        return false; 
    }); 
	$('#faleAgForm').submit(function() { 
        $(this).ajaxSubmit(options); 
        return false; 
    });
	$('#faleConsultForm').submit(function() { 
        $(this).ajaxSubmit(options); 
        return false; 
    });
}); 
 
// pre-submit callback 
function showRequest(formData, jqForm, options) { 
    // formData is an array; here we use $.param to convert it to a string to display it 
    // but the form plugin does this for you automatically when it submits the data 
    var queryString = $.param(formData); 
 
    // jqForm is a jQuery object encapsulating the form element.  To access the 
    // DOM element for the form do this: 
    // var formElement = jqForm[0]; 

		//alert('About to submit: \n\n' + queryString);
		
		if(wForm==1){return validaCac();}
		if(wForm==2){return validaAg();}
		if(wForm==3){return validaConsult();}

 
    // here we could return false to prevent the form from being submitted; 
    // returning anything other than false will allow the form submit to continue 
    return true; 
} 
 
// post-submit callback 
function showResponse(responseText, statusText)  { 
    // for normal html responses, the first argument to the success callback 
    // is the XMLHttpRequest object's responseText property 
 
    // if the ajaxSubmit method was passed an Options Object with the dataType 
    // property set to 'xml' then the first argument to the success callback 
    // is the XMLHttpRequest object's responseXML property 
 
    // if the ajaxSubmit method was passed an Options Object with the dataType 
    // property set to 'json' then the first argument to the success callback 
    // is the json data object returned by the server 
 
    //alert('status: ' + statusText + '\n\nresponseText: \n' + responseText + 
    //    '\n\nThe output div should have already been updated with the responseText.'); 
} 

function validaCac(){
		var errStatus = 0;
		var errMsg = '';
		
		if (document.faleCac.cacNome.value.length < 2){
			errMsg += '&bull; Voc&ecirc; deve preencher seu nome;<br/>';
			errStatus = 1;
			}
		if (!document.faleCac.cacEmail.value.match(/\b[A-Z0-9._%-]+@(?:[A-Z0-9-]+\.)+[A-Z]{2,4}\b/i)) {
			errMsg += '&bull; Voc&ecirc; deve inserir um e-mail v&aacute;lido;<br/>';
			errStatus = 1;
			}
		if (document.faleCac.cacEmpresa.value.length < 2){
			errMsg += '&bull; Digite o nome da empresa que voc&ecirc; representa;<br/>';
			errStatus = 1;
			}
		if (document.faleCac.cacMensagem.value.length < 2){
			errMsg += '&bull; Digite uma mensagem;<br/>';
			errStatus = 1;
			}
		if (errStatus == 1){
			$('#contatoAlerta').html("<span style=\"border:1px solid #FF9900;background:#FFCC66;padding:5px;display:block;\">"+errMsg+"</span>");
			return false;
		}
		else{
			montaContatoNovamente();
			$('#contatoAlerta').html("<span style=\"border:1px solid #66CC00;background:#D7FFD7;padding:5px;display:block;\">Enviando mensagem</span>");
			return true;
			}
	}

function validaAg(){
		var errStatus = 0;
		var errMsg = '';
		
		if (document.faleAg.agNome.value.length < 2){
			errMsg += '&bull; Voc&ecirc; deve preencher seu nome;<br/>';
			errStatus = 1;
			}
		if (!document.faleAg.agEmail.value.match(/\b[A-Z0-9._%-]+@(?:[A-Z0-9-]+\.)+[A-Z]{2,4}\b/i)) {
			errMsg += '&bull; Voc&ecirc; deve inserir um e-mail v&aacute;lido;<br/>';
			errStatus = 1;
			}
		if (document.faleAg.agEmpresa.value.length < 2){
			errMsg += '&bull; Digite o nome da empresa que voc&ecirc; representa;<br/>';
			errStatus = 1;
			}
		if (document.faleAg.agTelefone.value.length < 2){
			errMsg += '&bull; Digite um telefone de contato;<br/>';
			errStatus = 1;
			}
		if (document.faleAg.agData.value.length < 2){
			errMsg += '&bull; Digite uma melhor data para o agentamento da visita;<br/>';
			errStatus = 1;
			}
		if (document.faleAg.agMensagem.value.length < 2){
			errMsg += '&bull; Digite uma mensagem;<br/>';
			errStatus = 1;
			}
		if (errStatus == 1){
			$('#contatoAlerta').html("<span style=\"border:1px solid #FF9900;background:#FFCC66;padding:5px;display:block;\">"+errMsg+"</span>");
			return false;
		}
		else{
			montaContatoNovamente();
			$('#contatoAlerta').html("<span style=\"border:1px solid #66CC00;background:#D7FFD7;padding:5px;display:block;\">Enviando mensagem</span>");
			return true;
			}
	}
function validaConsult(){
		var errStatus = 0;
		var errMsg = '';
		
		if (document.faleConsult.consultNome.value.length < 2){
			errMsg += '&bull; Voc&ecirc; deve preencher seu nome;<br/>';
			errStatus = 1;
			}
		if (!document.faleConsult.consultEmail.value.match(/\b[A-Z0-9._%-]+@(?:[A-Z0-9-]+\.)+[A-Z]{2,4}\b/i)) {
			errMsg += '&bull; Voc&ecirc; deve inserir um e-mail v&aacute;lido;<br/>';
			errStatus = 1;
			}
		if (document.faleConsult.consultEmpresa.value.length < 2){
			errMsg += '&bull; Digite o nome da empresa que voc&ecirc; representa;<br/>';
			errStatus = 1;
			}
		if (document.faleConsult.consultSite.value.length < 2){
			errMsg += '&bull; Digite a URL do site que deseja ser consultado;<br/>';
			errStatus = 1;
			}
		if (document.faleConsult.consultTelefone.value.length < 2){
			errMsg += '&bull; Digite um telefone de contato;<br/>';
			errStatus = 1;
			}
		if (document.faleConsult.consultMensagem.value.length < 2){
			errMsg += '&bull; Digite uma mensagem;<br/>';
			errStatus = 1;
			}
		if (errStatus == 1){
			$('#contatoAlerta').html("<span style=\"border:1px solid #FF9900;background:#FFCC66;padding:5px;display:block;\">"+errMsg+"</span>");
			return false;
		}
		else{
			montaContatoNovamente();
			$('#contatoAlerta').html("<span style=\"border:1px solid #66CC00;background:#D7FFD7;padding:5px;display:block;\">Enviando mensagem</span>");
			return true;
			}
	}
	
function montaContatoNovamente(){
	$('#radiosBtn').hide();
	$('#radiosMalucos').hide();
	$('#cac').hide();
	$('#agendamento').hide();
	$('#consult').hide();
	}





























