var AnketaVoter=({
	jsonRequest:false,
	vote:function(aid,iid) {
		if(this.jsonRequest) {
			this.jsonRequest.cancel();
		}
  	this.jsonRequest = new Request.JSON({url: '/vote_anketa.php5', 
      onSuccess: this.voted.bind(this)
    }).get({'idinquiry': iid, 'answer': aid});
	},
	voted:function(r)	{
		str = '';
		for (idanswer in r) {
		  width_span = Math.round(100*r[idanswer].clickrate/r[idanswer].totalhit);
		  str = str + '<div class="item"><span style="color:#fff;">'+r[idanswer].answer+'</span>';
      str = str + '<div class="hodnotenie"><span style="width:'+width_span+'px;">&nbsp;</span></div><label>'+r[idanswer].percent+'% ('+r[idanswer].clickrate+')</label></div>';
    }
    $('answerAnketa').set('html',str);
	},
	failed:function()
	{
		//if AJAX failed
		alert('something gets wrong');
	}
}); 
