function menu(id) {
var i = document.getElementById('item'+id);
var c = document.getElementById('choix'+id);
	for (var u = 1; u<=30; u++) {
		if (document.getElementById('choix'+u)) {document.getElementById('choix'+u).className='choix';}
		if (document.getElementById('item'+u)) {document.getElementById('item'+u).className='';}
	}
if (c) {c.className='choix courant';}
if (i) {i.className='courant';}
}