$(document).ready(function(){
	$('#contato_frm_contato').submit(function(){
		$.post(
			$(this).attr('action'),
			{txt_nome: $('input[name=contato_txt_nome]').val(), txt_telefone: $('input[name=contato_txt_telefone]').val(), txt_mensagem: $('textarea[name=contato_txt_mensagem]').val() },
			function(e){

				var erro = $(e).find('resposta').attr('erros');

				if( erro == '0' )
				{
					document.location.href='/contato/resposta';
					return;
				}
				else if( erro == '1' )
				{
					var resposta = 'Os seguintes erros ocorreram:';
					$(e).find('erro').each(function(){
						resposta += "\n" + $(this).text();
					});
					alert(resposta);
				}
			}
		);
		return false;
	});

	$('#frm_contato').submit(function(){
		$.post(
			$(this).attr('action'),
			{txt_nome: $('input[name=txt_nome]').val(), txt_email: $('input[name=txt_email]').val(), txt_telefone: $('input[name=txt_telefone]').val(), txt_mensagem: $('textarea[name=txt_mensagem]').val() },
			function(e){

				var erro = $(e).find('resposta').attr('erros');

				if( erro == '0' )
				{
					document.location.href='/contato/resposta';
					return;
				}
				else if( erro == '1' )
				{
					var resposta = 'Os seguintes erros ocorreram:';
					$(e).find('erro').each(function(){
						resposta += "\n" + $(this).text();
					});
					alert(resposta);
				}
			}
		);
		return false;
	});
});
