$(document).ready(function() {
$(".reflect").load(function () {
    $(".reflect").reflect({inline: true});
});

$("#form_vote").submit(function() {
    $(this).ajaxSubmit({
        target: "#vote"
    });
    return false;
});
});

function diaporama(url) {
    window.open('diaporama.php5?' + url, 'diaporama', 'width=1200,height=800,resizable=1');
}

function noter() {
    if ($("#vote").css("display") == "none") {
        $("#vote").css("display", "inline");
    } else {
        $("#vote").css("display", "none");
    }
}
