jQuery(function() {
$("#ssmenu_transactions,#ssmenu_locations").hide();
    $(".i_transactions").hover(function() {
        $("#ssmenu_transactions").fadeIn("slow");

        $("#ssmenu_locations").hide();
    });
    $(".i_locations").hover(function() {
        $("#ssmenu_locations").fadeIn("slow");

        $("#ssmenu_transactions").hide();
    });
    $(".i_agences").hover(function() {
        $("#ssmenu_transactions,#ssmenu_locations").hide();
    });
    $(".i_exclus").hover(function() {
        $("#ssmenu_transactions,#ssmenu_locations").hide();
    });
    $(".i_prestige").hover(function() {
       $("#ssmenu_transactions,#ssmenu_locations").hide();
    });
    $(".i_contact").hover(function() {
       $("#ssmenu_transactions,#ssmenu_locations").hide();
    });
    $(".i_lang").hover(function() {
       $("#ssmenu_transactions,#ssmenu_locations").hide();
    });

$('#box_loc').hide();
 $(".alouer_btn_off").click(function() {
    $('#box_loc').show();
    $('#box_transac').hide();
 });
 $(".avendre_btn_off").click(function() {
    $('#box_loc').hide();
    $('#box_transac').show();
 });
});


function centrePopup(url,largeur,hauteur) {
    var gauche = (screen.width - largeur)/2
    var haut =  (screen.height - hauteur)/2
    return window.open(url,"","scrollbars=yes,width="+largeur+",height="+hauteur+",left="+gauche+",top="+haut)
  }