$(function() {
    $(".votevtele").click(function() {
		
        var vote = $("input#action-note").val();
        var idCandidat = $("input#idCandidat").val();
		
        var dataString = 'idCandidat='+ idCandidat + '&vote=' + vote;
        //alert (dataString);return false;
		
        $.ajax({
            type: "POST",
            url: "../includes/blocks/processVote.php",
            data: dataString,
            success: function() {
                $('.judge-candidate').html("<div id='message'></div>");
                $('#message').html("<p>Votre vote a été envoyé!</p>")
                .hide()
                .fadeIn(1500, function() {
                    $('#message').append("");
                });
                setTimeout(function(){window.location.reload();}, 2000);
            }
        });
        return false;
    });
});

