function resultados()
{
	//$('#enquete').fadeOut('slow', function(){  });
	$('#poll-container').fadeOut('slow', function(){  
				 
				 $.ajax({ 

				  method: "POST",

				  url: "./phpexe/resultados.php",

				  data: "link=",

				  cache: false,

				   //beforeSend: function(){ $('#videopreview').slideDown("slow");} ,

				  success: function(data){ 
					$('#enquete').hide();
					$('#enquete').html(data);
					$('#enquete').fadeIn('slow');
								
				  $("#poll-results div").each(function(){  
       				var percentage = $(this).next().text();  
       				$(this).css({width: "0%"}).animate({  
                 	width: percentage}, 'slow');  
   					});  
				
				  }
		  		 }); 
				 
				 });//fim fade out
}


$('#resultados').click(function() {
		
		resultados();

});


$('#votar').click(function() {
						   
		var ip 		  = $('#ip').val();
		var status	  = $('input[name=resposta]:checked').val();
		var pesquisa  = $('#pesquisaid').val();
		
			$.post("./phpexe/_gravarvotoenquete.php", { 
			
			ip: 			ip, 
			status: 		status,
			pesquisa:		pesquisa
			
				   },

				function(data){ 
					
				resultados();
					
				  if(data == 0){
				  $('#err').html("Você já votou nesta pesquisa");
					}
				
				  });
		  
});