$(document).ready(function() {

    $(".vote").click(function() {
        var index = $("#ballotNumber").val();
        var vote = $(this).hasClass("like") ? 0 : 1;

        $.ajax({
            type: "POST",
            url: "/common/poll/castVote.jhtml",
            data: "pollName=2009_naf_voting&ballotNum=" + index + "&vote=" + vote,
            success: function(msg) {
                $(".rateit").hide();
                $(".rateit_thanks").show();
            }
        });


    });


});