jQuery(function() {

jQuery("#ul_achat,#ul_loc").hide();


//Case Achat
jQuery("#menu_achat").hover(function() {
    $("#ul_loc").hide();

    $("#ul_achat").fadeIn("fast");
});

//Case Location
jQuery("#menu_loc").hover(function() {
    $("#ul_achat").hide();

	$("#ul_loc").fadeIn("fast");
});


jQuery(".other").hover(function(){
	$("#ul_achat,#ul_loc").hide();
});

jQuery("#t_menu").bind("mouseleave",function(){
	$("#ul_achat,#ul_loc").hide();
});

});

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)
  }
