//Initialisations

function change_page(content){
	//Initialisation
	div_retour = document.getElementById("content");
	div_retour.innerHTML = "Chargement...";
	fichier = "content/"+content+".inc.php";
	
	//AJAX - on récupère le contenu
	if(window.XMLHttpRequest) // Si on est sur firefox ou autres
	  ajax_navigation = new XMLHttpRequest();
	else if(window.ActiveXObject) // Spécialement pour IE
	  ajax_navigation = new ActiveXObject("Microsoft.XMLHTTP");
	else  return(false); //Le navigateur ne supporte pas la fonction

	//Récupération et envoi des données
	ajax_navigation.open("GET", fichier+"?ms=" + new Date().getTime(), false); //Astuce pour éviter le problème du cache
	ajax_navigation.send(null);

	//Retour
	if(ajax_navigation.readyState == 4){
		
		//Injection des données
		donnees = ajax_navigation.responseText;
		div_retour.innerHTML = donnees;
		div_retour.scrollTop=0;
		
	}
}

