/* auteur: Paris Christian */
/* Date de création: 14/05/2006 */
/* Titre : Menu2 avec retour de page */

var largeurmenu=80
var positiondegauche=10
var positionhaut=40


function makeStatic() {
if (document.all) {object1.style.pixelTop=document.body.scrollTop+positionhaut}
else{eval(document.object1.top=eval(window.pageYOffset+positionhaut));}
setTimeout("makeStatic()",0);
}

if (document.all) {document.write('<DIV ALIGN="CENTER" ID="object1" STYLE="Position:absolute; Top:20; Left:'+positiondegauche+'; Z-Index:5;cursor:hand;background-color:b"><TABLE BORDER="1" width="'+largeurmenu+'" CELLPADDING="0" CELLSPACING="0" BORDERCOLOR="blue" bgcolor="white" >')}
else if (document.layers){ document.write('<LAYER top="20" name="object1" left="'+positiondegauche+'" BGCOLOR=black><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="1"><TR><TD><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" width="'+largeurmenu+'">')}

if (document.all||document.layers)
document.write('<TR><TD BGCOLOR="#FF6600" BORDERCOLORDARK="#99CCFF" BORDERCOLORLIGHT="#003399"><P ALIGN=CENTER><FONT SIZE="3" color="#0000FF" FACE=ARIAL>Au Menu</FONT></TD></TR>')

var menui = new Array();
var menul = new Array();

menui[0]="Accueil";
menui[1]="Tout sur le club ";

menui[2]="Divers liens utiles ";
menui[3]="<img src='http://www.mcardenne.com/logo.gif' width=102 height=72> " ;
menui[4]="Retour d'une page ";

menul[0]="http://www.mcardenne.com/index.html" ;
menul[1]="http://www.mcardenne.com/leclub.html";

menul[2]="http://www.mcardenne.com/lien.html";
menul[3]="http://www.mcardenne.com/qui.php";
menul[4]="javascript:history.go(-1)";



for (i=0;i<=menui.length-1;i++)
if (document.all) {document.write('<TR><TD BORDERCOLOR="blue" ONCLICK="location=\''+menul[i]+'\'" onMouseover="className=\'menupassage\'" onMouseout="className=\'menu\'"><CENTER><font FACE=ARIAL color="black" size="1"><b>'+menui[i]+'</b></font></center></TD></TR>')}
else if (document.layers){document.write('<TR><TD BGCOLOR="black"><ILAYER><LAYER width="'+largeurmenu+'" onMouseover="bgColor=\'yellow\'" onMouseout="bgColor=\'white\'"><CENTER><A HREF="'+menul[i]+'" class=menulinks>'+menui[i]+'</A></CENTER></LAYER></ILAYER></TD></TR>')}

if (document.all) {document.write('</TABLE></DIV>')}
else if (document.layers){document.write('</TABLE></TD></TR></TABLE></LAYER>')}

function menu3(){
if (document.all||document.layers)
makeStatic()
}

window.onload=menu3
