$(document).ready(
	function()
	{
		$('#header_tools > li > a, #header_tools input').each(
			function()
			{
				$(this).mouseover
				(
					function()
					{
						//on replie tout les autres menu :
						$('#header_tools a.menu').next().css
						(
							{
								display : 'none'
							}
						)
						var offset = $(this).parent().position();
						if(offset.left != 0){
							offset.left -= 16;//padding des balises li parents.
						};
						$(this).next("ul").css
						(
							{
								left : offset.left+'px'
							}
						).show();					
					}
				);		
			}
		);
		
		
		/*$('#header_tools li ul').mouseout
		(
			function()
			{
				//on replie tout les menu :
				$('#header_tools a.menu').next().css
				(
					{
						display : 'none'
					}
				)		
				alert($(this)+'mouseout');
			}
		);*/
		
		
		$('#header_tools li ul').bind
		(
			"mouseleave",function()
			{
				$('#header_tools li ul').css
				(
					{
						display : 'none'
					}
				)
			}
		);
	}
);
