$(function(){
	//Formulário de Newsletter
	$("#formNewsletter").submit(function() {
		$("#respostaNews").css({'color':'#FFF'}).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':'#AA0011'}).fadeIn().html('<img src="img/loading.gif" />');
		$.post('contato.post.php', $(this).serialize(), function(resposta) {
			if(resposta != false){		
				$("#respostaForm").html(resposta);
				return;
			}
			$("#respostaForm").html("Formulário enviado com sucesso.");
		})
	});
	
	$("#curriculo").submit(function() {
		$("#respostaForm").css({'color':'#AA0011'}).fadeIn().html('<img src="img/loading.gif" />');
		$.post('trabalhe.post.php', $(this).serialize(), function(resposta) {
			if(resposta != false){		
				$("#respostaForm").html(resposta);
				return;
			}
			$("#respostaForm").html("Formulário enviado com sucesso.");
		})
	});
	
});
