$(function($) {
	
	$(".formContato").submit(function() {
		
		var assunto = $("#assunto").val();
		var nome = $("#nome").val();
		var email = $("#email").val();
		var mensagem = $("#msg").val();
		
		$(".status").html("<img src='images/loading.gif' alt='Enviando' />");
		
		$.post('contact.php', {nome: nome, mensagem: mensagem, email: email, assunto: assunto}, function(resposta) {
				
				if (resposta != false) {
					
					$(".status").html(resposta);
					
				}else {
					
					$("#assunto").val("");
					$("#nome").val("");            		
            		$("#email").val("");
            		$("#msg").val("");
                    
                    $(".status").html("<div class='msgok'>Sua mensagem foi enviada.</div>");
					
				}
		});
	});
});

$(function($) {
	
	$(".formOrcamento").submit(function() {
		
		var nome = $("#nomeO").val();
		var empresa = $("#empresa").val();
		var email = $("#emailO").val();
		var telefone = $("#telefone").val();
		var mensagem = $("#msgO").val();
		
		$(".statusOrcamento").html("<img src='images/loading.gif' alt='Enviando' />");
		
		$.post('orcamento.php', {nome: nome, empresa: empresa, email: email, telefone: telefone, mensagem: mensagem}, function(resposta) {
				
				if (resposta != false) {
					
					$(".statusOrcamento").html(resposta);
					
				}else {
					
					$("#nomeO").val("");            		
            		$("#emailO").val("");
					$("#empresa").val("");
					$("#telefone").val("");
            		$("#msgO").val("");
                    
                    $(".statusOrcamento").html("<div class='msgok'>Sua solicitação foi enviada.</div>");
					
				}
		});
	});
});
