jQuery(function() {

	$("#ul_achat,#ul_loc,#ul_agen").hide();


	//Case Achat
	$("#menu_achat").hover(function() {
	    $("#ul_loc").hide();
	    $("#ul_agen").hide();

	    $("#ul_achat").fadeIn("fast");
	});

	//Case Location
	$("#menu_loc").hover(function() {
	    $("#ul_achat").hide();
	    $("#ul_agen").hide();

		$("#ul_loc").fadeIn("fast");
	});

	//Case Agence
	$("#menu_agen").hover(function() {
	    $("#ul_achat").hide();
	    $("#ul_loc").hide();

		$("#ul_agen").fadeIn("fast");
	});


	$(".other").hover(function(){
		$("#ul_achat,#ul_loc,#ul_agen").hide();
	});

	$("#col_left").bind("mouseleave",function(){
		$("#ul_achat,#ul_loc,#ul_agen").hide();
	});



	/*** Moteur ***/


	$("#moteur_ss_outils,#moteur_ss_alerte").hide();

	/* Alerte */
	$("#moteur_alerte").click(function() {
		$("#moteur_alerte").hide();
		$("#moteur_ss_outils").hide();

	    $("#moteur_ss_alerte").fadeIn("fast");
	});

	$("#moteur_ss_alerte").bind("mouseleave",function(){
		$("#moteur_ss_alerte").hide();

		 $("#moteur_alerte").fadeIn("fast");
	});

	/* Outils */
	$("#moteur_outils").click(function() {
		$("#moteur_outils").hide();
		$("#moteur_ss_alerte").hide();

	    $("#moteur_ss_outils").fadeIn("fast");
	});

	$("#moteur_ss_outils").bind("mouseleave",function(){
		$("#moteur_ss_outils").hide();

		 $("#moteur_outils").fadeIn("fast");
	});

});