﻿
function showNousContacter() {
    $('.cesvi_nous_contacter_overlay').show();
    $('.cesvi_nous_contacter').show();
    if (contact_form_focus_control)
        $('#' + contact_form_focus_control).focus();
}

function hideNousContacter() {
    $('.cesvi_nous_contacter_overlay').hide();
    $('.cesvi_nous_contacter').hide();
}

$(function() {
    $('.show_nous_contacter_button').click(showNousContacter);
});
