function menu()
	{
	nb_image=27;
	tab_menu = new Array;
	nb_alea=Math.floor(Math.random() * nb_image)+1
	
	html = '<div id="choix_css"><p>Changer le fond : <a href="change_css.php?coul=noir">Noir (1024)</a> | <a href="change_css.php?coul=jaune">Jaune (1024)</a> | <a href="change_css.php?coul=noir800">Noir (800)</a> | <a href="change_css.php?coul=jaune800">Jaune (800)</a></p></div>';
	html += '<div id="div_menu"><p><a class="image" href="main.php"><img src="menu';
	if (nb_alea < 10) {html += '0'; }
	html += nb_alea;
/*
	html += '04';
*/
	html += '.jpg" border="0"/></a></p>';
	html += '<div id="div_menu_lien">';
	html += '<p class="menu">';
	html += '<a href="albums.php">Albums</a> ';
	html += '<a href="animations.php">Animations</a> ';
	html += '<a href="auteurs.php">Auteurs</a> ';
	html += '<a href="dossiers.php">Dossiers</a> ';
	html += '<a href="fonds.php">Images</a> ';
	html += '<a href="langues.php">Langues</a> ';
	html += '<a href="liens.php">Liens</a> ';
	html += '<a href="lieux.php">Lieux</a> ';
	html += '<a href="persos.php">Personnages</a> ';
	html += '<a href="news.php">News</a> ';
	html += '<a href="savoir.php">Savoir</a>';
	html += '&nbsp;|&nbsp;';
	html += '<a href="http://www.luguy.com/phpBB/">Forum</a> ';
	html += '<a href="http://www.luguy.com/guestbook/">Livre d\'Or</a> ';
	html += '<a href="..">luguy.com</a></p>';
	html += '</div>';
	html += '</div>';
	html += '<p>&nbsp;</p>';
	return(html);
	}