function load(name){
	
	if (name=="index") {
		window.location.replace("./forum/index.php");
	} else if (name=="jeu") {
		window.location.replace("./game/index.php");
	}
}

function souligne(item){
	document.getElementById("item"+item).style.textDecoration='underline';
}

function quitte(item){
	document.getElementById("item"+item).style.textDecoration='none';
}
