// JavaScript Document
/*
SCRIPT TROUVE SUR L'EDITEUR JAVASCRIPT
http://www.editeurjavascript.com
*/

document.write('<STYLE TYPE="text/css">\na.mv1style {color:#006699;text-decoration:none;}\na:hover.mv1style {color:#ff0000;text-decoration:underlined;}\n</STYLE>');

mv1_menu = new Array();
mv1_lien = new Array();

mv1_menu[0] = '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
mv1_menu[1] = 'Jacques Myard'
mv1_menu[2] = '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';

mv1_lien[0] = ''
mv1_lien[1] = ''

mv1_lien[1] += '&nbsp;<BR>';

mv1_lien[1] += '<A HREF="pages/biographie.html" CLASS=mv1style TARGET="essaiframe2"> . Biographie</A><BR>';
mv1_lien[1] += '<A HREF="pages/equipe.html" CLASS=mv1style TARGET="essaiframe2"> . L\'&eacute;quipe</A><BR>';
mv1_lien[1] += '<A HREF="pages/discours.html" CLASS=mv1style TARGET="essaiframe2"> . Discours</A><BR>';
mv1_lien[1] += '<A HREF="pages/contact.html" CLASS=mv1style TARGET="essaiframe2"> . Contacter</A><BR>';
mv1_lien[1] += '<A HREF="pages/cnr.html" CLASS=mv1style TARGET="essaiframe2"> . Le Cercle CNR</A><BR>';
mv1_lien[2] = ''


mv1_pos = -1;

function mv1_menu_draw()
	{
	mv1_aff = "<TABLE BORDER=0 BGCOLOR=#ffffff CELLPADDING=0 CELLSPACING=0 WIDTH=140><TR><TD><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>";

	for(a=0;a<mv1_menu.length;a++)
		{
		if(mv1_pos == a || !document.getElementById)
			bgcolor = "#ffffff";
		else
			bgcolor = "#FFFFff";
	if(document.getElementById)
			mv1_aff += "<TR><TD BGCOLOR="+bgcolor+"><A HREF=\"#\" onMouseOver=\"mv1_pos="+a+";mv1_menu_draw()\" CLASS=mv1style><FONT FACE=\"Verdana\" SIZE=2><B>"+mv1_menu[a]+"</B></FONT></A></TD></TR>";
		else
			mv1_aff += "<TR><TD BGCOLOR="+bgcolor+"><FONT FACE=\"Verdana\" SIZE=2 COLOR=#006699><B>"+mv1_menu[a]+"</B></FONT></TD></TR>"
	if(mv1_pos == a || !document.getElementById)
			mv1_aff += "<TR><TD BGCOLOR="+bgcolor+"><FONT FACE=\"Verdana\" SIZE=1><B>"+mv1_lien[a]+"</B></FONT></TD></TR>";
		}

	mv1_aff += "</TABLE></TD></TR></TABLE>";
	if(document.getElementById)
		document.getElementById("mv1").innerHTML = mv1_aff;
	else
		document.write(mv1_aff);
	}

mv1_menu_draw();

