function animateResults(){
  $("#poll-results div").each(function(){
      var percentage = $(this).children('.percentage').text();
      $(this).css({width: "0%"}).animate({
				width: percentage}, 'slow');
  });
}