function animateResults(id){
  $("#poll-results .progress").each(function(){
      var percentage = $(this).prev().text();
            
      if (percentage != "0%")
      {
        $(this).css({width: "0%"}).animate({
		    width: percentage}, 'slow');
      }
      else
        $(this).hide();
  });
}