/**
	config.js
	Descrição: Arquivo com configurações dos templates
	© 2006 - Direct Talk Comércio e Tecnologia Ltda
	*/
	
	var DTvalidateConfig = {
	"elements" :
		[
			{
				"id" : "nome_usuario",
				"feedback" : "Fill the name.",
				"validationType" : "texto",
				"failureFeedback" : "Invalid name"
			},
			{
				"id" : "email",
				"feedback" : "Fill the e-mail.",
				"validationType" : "email",
				"failureFeedback" : "Invalid e-mail"
			},
			{
				"id" : "cpf",
				"feedback" : "Fill the id number.",
				"validationType" : "numero",
				"failureFeedback" : "Fill only with numbers"
			},
			{
				"id" : "evento",
				"feedback" : "Fill the promotion code number"
			},
			{
				"id" : "cid_origem",
				"feedback" : "Select the field From"
			},
			{
				"id" : "cid_destino",
				"feedback" : "Select the field To."
			},
			{
				"id" : "periodo_saida",
				"feedback" : "Select the period of departure date."
			},
			{
				"id" : "periodo_retorno",
				"feedback" : "Select the period of return date."
			},
			{
				"id" : "telefone",
				"feedback" : "Fill the phone number.",
				"validationType" : "numero",
				"failureFeedback" : "Fill only with numbers"
			},
			{
				"id" : "saida",
				"feedback" : "Fill the departure date",
				"validationType" : function(){ return /^\d{2}\/\d{2}$/gi; },
				"failureFeedback" : "Invalid departure date. Use DD/MM."
			},
			{
				"id" : "retorno",
				"feedback" : "Fill the return date.",
				"validationType" : function(){ return /^\d{2}\/\d{2}$/gi; },
				"failureFeedback" : "Invalid return date. Use DD/MM."
			}
		],
	"options" :
		{
		"err_frase":"#total_err# errors in validation:",
		"classDefault" : "text",
		"classError" : "textErro",
		"submitButtom" : "submit"
		}
	};
