$(function(){
			$().ajaxStart(function() { $('#loading2').show(); });
			
				$("#b_Enviar").click(function(){
				$("#escondida").hide()
						   	   .show("slow");
				$.post("envia_email.php",
					   {nome : $("#nome").val(),
					    email : $("#email").val(),
						texto : $("#mensagem").val(),
						assunto : $("#assunto").val(),
						setor : $("#setor").val()},
					   function(resposta){
						   $("#escondida").html(resposta);
					   }
				);
				$("#nome").val("");
				$("#email").val("");
				$("#mensagem").val("");
				$("#assunto").val("");
			});
			$().ajaxStop(function() { $('#loading2').hide(); });
		   
});