	function principal(tipo,id){
		var tipo2 = 'ajax_'+tipo+'.php?id='+id;

		$("#ppb").fadeOut("slow",function(){
		 $("#ppb").load(tipo2,function(){
		document.getElementById('aba_noticias').style.backgroundImage= 'none';
		document.getElementById('aba_promocoes').style.backgroundImage= 'none';
		document.getElementById('aba_agenda').style.backgroundImage= 'none';
		var aba = 'aba_' + tipo;
		document.getElementById(aba).style.backgroundImage= 'url(img/aba_select_bg.png)';
		$("#ppb").fadeIn("slow");
										  });
	});
		return false;
}
function mostrar_resultados(id){
	var classe = '.'+id;
	$(classe).fadeIn("slow",function(){
		$(this).css('display','inline');
									 });
}
function vota(resp,perg){
	var query = "ajax_enquetes.php?id_pergunta="+perg+"&id_resposta="+resp;
		$("#ppb").fadeOut("slow",function(){
			 $("#ppb").load(query,function(){
				$("#ppb").fadeIn("slow");
			});
		});
}