$(document).ready(function () {
    /* --------- target _blank --------- */
    $("a.lien_ext").click(function () {
        this.target = "_blank";
    });
    /* --------- Arrow links ---------- */
    $('#left_arrow_div').mouseover(function () { $('#left_arrow_img').show(); })
    $('#left_arrow_div').mouseleave(function () { $('#left_arrow_img').hide(); })
    $('#right_arrow_div').mouseover(function () { $('#right_arrow_img').show(); })
    $('#right_arrow_div').mouseleave(function () { $('#right_arrow_img').hide(); })
});
