function todayDate() {
	var today = new Date();
	var month = today.getMonth();
	var day = today.getDate();
	var year = today.getFullYear();
	
	var mois = new Array ("janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre");
	
	return day +" "+mois[month]+" "+year;						
}

function getSection(section) {
	
	switch (section) {	
		case "home":
		window.location="index.php";
		break;
		
		case "autodrome":
		window.location="autodrome.php";
		break;
		
		case "results":
		window.location="resultats.php";
		break;
		
		case "links":
		window.location="links.php";
		break;
		
		case "lodging":
		window.location="hebergement.php";
		break;
		
		case "photos":
		window.location="photos.php";
		break;

		case "archives":
		window.location="archives.php";
		break;		
		
		case "calendar":
		window.location="calendar.php";
		//alert("Calendrier temporairement non-disponible");
		break;
		
		default:
		alert("Section à venir");
		break;
	}
}