$(function(){
	$(".blocLien").hide();
	
	$(".bloc").hover(
		function(){
			$("#blocDefault").hide();
			//myID = $(this).children(".bloc").attr("id");
			myID = $(this).attr("id");
			obj = "#" + myID + "BG";
			$(obj).fadeIn("slow");
			myLink = "#" + myID + " .blocLien";
			$(this).width(716);
			$(myLink).fadeIn();
			$(this).parent().css("background","none")
		},
		function(){
			$("#blocDefault").show();
			myID = $(this).attr("id");
			obj = "#" + myID + "BG";
			$(obj).fadeOut("slow");
			myLink = "#" + myID + " .blocLien";
			$(myLink).fadeOut("normal",function(){
				$(this).parent().width(84);
				$(this).parent().parent().css("background","#fff")
			});
		}
	);
});