$(document).ready
(
function(){ 
	var pos_y;
	 
	$("div.voile").hover(
		function () 
		{	
			$(this).stop();
			pos_y = $("#"+this.parentNode.id).height() - $("#menu_"+this.id).outerHeight() - 80 - 18; // 80 = taille du padding-top (intérieur du voile)
			if (pos_y < 0)
				pos_y = 0;
				
			pos_y = 0 - pos_y;
			$("#"+this.id).animate({marginTop: pos_y},800);
		},
		function () 
		{
			$(this).stop();
			pos_y = $("#"+this.parentNode.id).height() - 62; // 62 = taille du titre du voile
			pos_y = 0 - pos_y;
			$("#"+this.id).animate({marginTop: pos_y},800);
		}
	);
});
