

jQuery(document).ready(function () {
    activerPopin();

});

function activerPopin() {

    jQuery("#btn_close_popin").click(function(){
        jQuery("#popin").fadeOut();
    });
    jQuery("#btn_avis_specialiste").click(function(){
        jQuery("#popin").fadeIn();
    });
}
