
/******
FONCTION POUR AFFICHER LE MENU VOULU
Code 100% par moi
******/
function AfficheMenu(nav_type)
	{
	/* Cache tous les menus */
		document.getElementById("menu_general").className = 'menu_cache';
		document.getElementById("menu_forum").className = 'menu_cache';
		document.getElementById("menu_jeu").className = 'menu_cache';
	/* Affiche le menu voulu */
		document.getElementById("menu_"+nav_type+"").className = 'menu_affiche';
}