var calques = new Array();var haut = new Array();ch='<center>';// Creation des calquesfor (i=1;i<=menu.length-1;i++){	// Menu	ch+='<img src="../img/shim.gif" width="1" height="12"><br><table cellpadding="0" cellspacing="0" width="'+largeur+'" border="0" bgcolor="#ffffff" height="20"><tr>';	ch+='<td bgcolor="'+coul_moff+'" align="left" valign="center" height="20" class="mnav" id="tdmenu'+i+'"';	ch+=' nowrap onmouseover="javascript:changefond(0,'+i+',\''+coul_mon+'\')" onmouseout="javascript:changefond(0,'+i+',\''+coul_moff+'\')">&nbsp;&nbsp;&nbsp;'+menu[i]+'</td></tr>';	ch+='<tr><td bgcolor="#ffffff" height="3"><img src="../img/shim.gif" width="1" height="3"></td></tr></table>';	// Sous-menus	ch+='<table cellpadding="0" cellspacing="0" width="'+(largeur-12)+'" border="0" id="bas'+i+'">';		for (j=1;j<=smenu[i].length-1;j++)	{	 //if (lien[i][j]!="") ch+='<tr><td align="left" onclick="javascript:parent.frames.location='+lien[i][j]+';" valign="center" class="navg2" height="18" bgcolor="'+coul_off+'" id="td'+i+''+j+'"';	 //else ch+='<tr><td align="left" valign="center" onclick="javascript:parent.frames.contenu.location='+lien[i][j]+';" class="navg2" height="18" bgcolor="'+coul_off+'" id="td'+i+''+j+'"';	   if (lien[i][j]=="") ch+='<tr><td align="left" valign="center" class="navg2" height="18" bgcolor="'+coul_off+'" id="td'+i+''+j+'"';		else ch+='<tr><td align="left" onclick="javascript:parent.frames.contenu.location=\''+lien[i][j]+'\';" valign="center" class="navg2" height="18" bgcolor="'+coul_off+'" id="td'+i+''+j+'"';	    	    ch+=' onmouseover="javascript:changefond(1,'+i+''+j+',\''+coul_on+'\')" onmouseout="javascript:changefond(1,'+i+''+j+',\''+coul_off+'\')">';		ch+='&nbsp;&nbsp;'+smenu[i][j]+'</td></tr>';		ch+='<tr><td bgcolor="#ffffff" height="2"><img src="../img/shim.gif" width="1" height="2"></td></tr>';	}	ch+='</table><br>';}ch+='</center>';document.getElementById("nav").innerHTML=ch;function changefond(nivo,id,coul){	if (nivo==0) document.getElementById("tdmenu"+id).style.backgroundColor=coul;	if (nivo==1) document.getElementById("td"+id).style.backgroundColor=coul;	//document.getElementById("tdmenu"+men).style.backgroundColor=coul2;	//document.getElementById("tdmenu"+men).style.color='#ffffff';}
