/*********************************************************************/

function afficheHeaderMenu()
{
	new Ajax.Request("/menu/index.php",
	{
		method: 'post',
		asynchronous: true,
		contentType: 'application/x-www-form-urlencoded',
		encoding: 'UTF-8',
				
		onSuccess: function(reponse) 
		{
			
			document.getElementById("header").innerHTML = reponse.responseText;			
		}		
	});
}

