$(function(){
	//Formulário de Newsletter
	$("#newslleter").submit(function() {
		$("#respostaNews").css({'color':'#ad0700'}).fadeIn().html("<img src='img/loading.gif'>");
		$.post('newsletters.post.php', $(this).serialize(), function(resposta) {			
			if(resposta !=false){		
				$("#respostaNews").html(resposta);
				return;
			}
			$("#respostaNews").html("Cadastrado c/ sucesso.").css('font-size','11px');
		})
	});
	
	//Formulário de Contato;
	$("#contato").submit(function() {
		$("#respostaForm").css({'color':'#666'}).fadeIn().html("Enviando");
		$.post('contato.post.php', $(this).serialize(), function(resposta) {			
			if(resposta !=false){		
				$("#respostaForm").html(resposta);
				return;
			}
			$("#respostaForm").html("Formulário enviado com sucesso.");
		})
	});

});
