$(document).ready(function(){
    $('a.pick-poll').click(function(e){
        $this = $(this);
        e.preventDefault();
        $.getJSON('/ajax/pick-poll/', 
            {'pId' : $(this).attr('pId'), 'fId' : $(this).attr('fId')}, function(data){
            if(data['status'] == 'ok') {
                $('div[id^="chooseItem' + $this.attr('pId') + '"]').html('');
                $.each(data.response.items, function(i){
                    if(this.current == 1) {
                        $('#' + this.div).html('<center><b>' + this.percent + '%</b> ' + this.votes + ' vote(s)<br/><img src="/media/img/buttons/your-choice.gif" alt="tagged" width="91px" height="22px"/></center>');
                    } else {
                        $('#' + this.div).html('<center><b>' + this.percent + '%</b> ' + this.votes + ' vote(s)</cetner>');
                    }
                });
            }
            
        });
    });
});