function ById(id){
	return document.getElementById(id);
}

function ajax_enquete(id_enquete, voto){
	$.post("ajax.php",
	{
		voto: voto,
		id_enquete: id_enquete,
		acao:'voto_enquete'
	},function(xml)
	{
		$('#blabla').hide();
		$('#enquete').html(xml);
		
	});  
}

