$(document).ready(function () {

    $('.voteable').click(function () {

        $.ajax({
            type: "POST",
            url: "/index/votepoll/",
            data: {'id':$(this).attr('id')}

        });

        $('.voteable').hide();
        $('#poll-result').show('medium');

    });


});