$(document).ready(function(){
    $('.poll-point label').click(function(){
        id = $(this).attr('id');
        ids = id.split('/');
        voteid = ids[0];
        pollid = ids[1];
        $.ajax({
            url: '/votes/vote/'+voteid+'/'+pollid,
            beforeSend: function(){
                $('#poll').html('Подождите...');
            },
            success: function(data)
            {
                $.ajax({
                    url: '/votes/results/'+pollid,
                    beforeSend: function(){
                        $('#poll').html('Загрузка результатов...');
                    },
                    success: function(data)
                    {
                        $('#poll').html(data);
                    }
                });
            }
        });
        return false;
    });
    
    return false;
});






