<!--
if (document.all||document.layers) {
makeStatic();}

var text=new Array();
var thelink=new Array();

// Les Pages, titres, cette liste peut être étendue ou réduite
text[0]="Légende des Bohrok";
text[1]="Légende de Mat-Nui";
text[2]="Les villages";
text[3]="Les Bohrok";

// Les liens qui correspondent aux pages Web, cette liste doit avoir le même nombre de titres
thelink[0]="../pages/legende.html";
thelink[1]="../pages/mata-nui.html";
thelink[2]="../pages/villages.html";
thelink[3]="../pages/bohrok.html";

// Entrer les cibles des pages.
/* Les valeurs possibles sont : 
==> rien ('') ==> Dans la même page (pas de target en fait).
==> new ==> Nouvelle page (_blank)
==> Nom_de_frame ==> Cible, le nom d'une frame (comme pour target=machin_chose)
*/

var linktarget=''

// NE RIEN CHANGER APRES

function navigateie(which){
if (linktarget=='')
window.location=thelink[which]
else if (linktarget=='new')
window.open(thelink[which])
else{
temp_var=eval("window.parent."+linktarget)
temp_var.location=thelink[which]
}
}

for (i=0;i<=text.length-1;i++)
if (document.all) {document.write('<tr><td height=20 bgcolor=orange onclick="navigateie('+i+')" onmouseover="className=\'hl\'" onmouseout="className=\'n\'"><font face="Arial, Helvetica, sans-serif"><b><font size="2"> '+text[i]+'</b></font></font></td></tr>')}
else {document.write('<tr><td bgcolor="green"><ilayer><layer height="18" onmouseover="this.bgColor=\'green\'" onmouseout="this.bgColor=\'green\'" width=131><font size=2 face=Arial> <a href="'+thelink[i]+'" target="'+linktarget+'" id="nounderline">'+text[i]+'</a></font></layer></ilayer></td></tr>')}

//-->