function rafraichirActualites()
{
	var xhr;
	try {xhr = new ActiveXObject('Msxml2.XMLHTTP');}
	catch (e)
	{
		try {xhr = new ActiveXObject('Microsoft.XMLHTTP');}
		catch (e2)
		{
			try {xhr = new XMLHttpRequest();}
			catch (e3) {xhr = false;}
		}
	}
	// ON TESTE LA RECUPERATION DES DONNEES POUR AFFICHAGE
	xhr.onreadystatechange = function()
	{
		if(xhr.readyState == 4)
		{
			if(xhr.status == 200)
			{
				Effect.Fade('news',{to:0.01,afterFinish:function(){document.getElementById('news').innerHTML = xhr.responseText}});
				Effect.Appear('news',{delay:2,from:0.01,afterFinish:function(){window.setTimeout('rafraichirActualites()',6000);}});
			}
		}
	};
	// REQUETE XHR
	xhr.open("GET", "php/actualites.ajax.php", true);
	xhr.send(null);
}