$(document).ready(function(){
	//$('div.pergunta h3').click(function(){ $(this.parentNode).find('p').slideToggle();});
	
	$('#categoria').change(function(){
		$('<span id="load_content_asks" style="margin-left:10px;width:100px;">Carregando...</span>').insertAfter('#categoria');
		var categoria = $(this).val();
		$.ajax({
			url:'faq_request.php',
			data:'idFaqCategoria='+categoria,
			type:'POST',
			success: function(msg){
				$('#faq_result').html(msg.toString());
				$('#load_content_asks').remove();
			}
		});
		jQuery('.rede-perguntas-frequentes div.respostas>div>div>a>span>div>span').removeAttr('style');
		jQuery('.rede-perguntas-frequentes div.respostas>div>div>span>div>span').removeAttr('style');
	});
});
