$(function(){
	//Formulário de Newsletter
	$("#news").submit(function() {
		$("#respostaNews").css({'color':'#000'}).fadeIn().html("<img src='img/loading.gif'>");
		$.post('newsletters.post.php', $(this).serialize(), function(resposta) {			
			if(resposta != ""){
				$("#respostaNews").html(resposta);
				$("#respostaNews").fadeIn();
				setTimeout(function(){
					$("#respostaNews").fadeOut();
				},7000)
				return;
			}
			$("#respostaNews").html("Cadastrado com sucesso.").css('font-size','11px');
		})
	});
	
	//Formulário de Contato;
	$("#formContato").submit(function() {
		$("#respostaContato").css({'color':'#000'}).fadeIn().html("<img src='img/loading.gif'>");
		$.post('contato.post.php', $(this).serialize(), function(resposta) {			
			if(resposta !=false){
				$("#respostaContato").html(resposta);
				setTimeout(function(){
					$("#respostaContato").fadeOut();
				},7000)
				return;
			}
			$("#respostaContato").html("Formulário enviado com sucesso.");
		})
	});
	
	$("#formRevenda").submit(function() {
		$("#respostaRevenda").css({'color':'#000'}).fadeIn().html("<img src='img/loading.gif'>");
		$.post('revender.post.php', $(this).serialize(), function(resposta) {			
			if(resposta !=false){
				$("#respostaRevenda").html(resposta);
				setTimeout(function(){
					$("#respostaRevenda").fadeOut();
				},7000)
				return;
			}
			$("#respostaRevenda").html("Formulário enviado com sucesso.");
		})
	});
	
	//Formulário de Reserva
	$("#visitar").submit(function() {
		$("#respostaVisita").css({'color':'#000'}).fadeIn().html("<img src='img/loading.gif'>");
		$.post('visitar.post.php', $(this).serialize(), function(resposta) {			
			if(resposta !=false){		
				$("#respostaVisita").html(resposta);
				setTimeout(function(){
					$("#respostaVisita").fadeOut();
				},7000)
				return;
			}
			$("#respostaVisita").html("Visita agendada com sucesso.");
		})
	});
});
