$().ready(function() {

$(".item").each(function(){
	$(this).hover(function(){
		$("#hoverDefaut").hide();
		id_doc=$(this).attr("rel");
		$.ajax({ 
			type: "POST",
			url: "comportement/php/hover_home.html",
			async: false,
			data: "id_doc="+id_doc,
			success: function(msg){
				$("#hover").html(msg).fadeIn("slow");

			}
		});
	},function(){
		recup=$("#hover").html();
		$("#hover").empty().hide();
		$("#hover2").html(recup).show().fadeOut("slow");
	});
});

$("#navNiv1").hover(function(){
	$("#hoverDefaut").hide();
},function(){
	setTimeout(function() {
  		$("#hoverDefaut").show();
	}, 300);
})


});
