		
	if ($(".post_consultor").length > 1)
		$(".post_consultor:last").hide();

	$("#pergunta_nome, #pergunta_email, #pergunta_texto").focus(function() {
		if ($(this).attr("name") == $(this).val())
			$(this).val("");
	});
	
	$("#pergunta_nome, #pergunta_email, #pergunta_texto").blur(function() {
		if ($(this).val() == "")
			$(this).val($(this).attr("name"));
	});

	$("#pergunta_botao").click(function() {
		$("#pergunta_nome, #pergunta_email, #pergunta_texto").focus();
		
		if (Validar('pergunta_nome','','R','pergunta_email','','RisEmail','pergunta_texto','','R'))
		{
			
			$.post("info.aspx?cnt=" + chave_contexto + "&html=post&cmd=procedure&prc=297&form=frm_", 
				{ 
					frm_c_pnome: $("#pergunta_nome").val(),
					frm_c_pemail: $("#pergunta_email").val(),
					frm_c_ppergunta: $("#pergunta_texto").val(),
					frm_c_pcanal: $("#pergunta_canal").val()
				}
			);
			alert("Sua pergunta foi efetivada com sucesso e em breve será respondida por um de nossos consultores.");
			$("#pergunta_nome, #pergunta_email, #pergunta_texto").val("");
		}
		
		$("#pergunta_nome, #pergunta_email, #pergunta_texto").blur();
	});

