$('.poll__input').each(function(i){
var $this = $(this);
$this.find(".poll__result").each(function(i, e){
results.push($(e).text());
})
$this.find(".poll__bar > div").attr('style','width:'+results[i])
$this.find("input").attr('id','radio_' + (i + 1))
$this.find("label").attr('for','radio_' + (i + 1))
})