/* auteur: varman7 */
/* Date de création: 13/09/2003 */
/*
SCRIPT TROUVE SUR L'EDITEUR JAVASCRIPT
http://www.editeurjavascript.com
*/

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

mv2_menu = new Array();
mv2_lien = new Array();

mv2_menu[0] = 'NEWS';
mv2_menu[1] = 'EQUIPES 10-11';
mv2_menu[2] = 'PLANNING';
mv2_menu[3] = 'COMITE';
mv2_menu[4] = 'STAFF';
mv2_menu[5] = 'FESTIVITES';
mv2_menu[6] = 'PLUS !';


mv2_lien[0] = ''
mv2_lien[1] = ''
mv2_lien[2] = ''
mv2_lien[3] = ''
mv2_lien[4] = ''
mv2_lien[5] = ''
mv2_lien[6] = ''
mv2_lien[0] += '<A HREF="miseajour.html" CLASS=mv2style TARGET="entree"> . Dernières mises à jour</A><BR>';
mv2_lien[0] += '<A HREF="news.html" CLASS=mv2style TARGET="entree"> . Les News</A><BR>';
mv2_lien[0] += '<A HREF="weekendprogramme.html" CLASS=mv2style TARGET="entree"> . Prochain week-end</A><BR>';
mv2_lien[0] += '<A HREF="heureuxevenements.html" CLASS=mv2style TARGET="entree"> . Heureux événements</A><BR>';
mv2_lien[0] += '<A HREF="tristesnouvelles.html" CLASS=mv2style TARGET="entree"> . Tristes nouvelles</A><BR>';
mv2_lien[1] += '<A HREF="mosad21011-cadre.html" CLASS=mv2style TARGET="entree"> . Division 2 </A><BR>';
mv2_lien[1] += '<A HREF="mosad3a1011-cadre.html" CLASS=mv2style TARGET="entree"> . Division 3A </A><BR>';
mv2_lien[1] += '<A HREF="mosad3b1011-cadre.html" CLASS=mv2style TARGET="entree"> . Division 3B </A><BR>';	
mv2_lien[1] += '<A HREF="cadets1011-cadre.html" CLASS=mv2style TARGET="entree"> . Cadets </A><BR>';
mv2_lien[1] += '<A HREF="pupilles1011-cadre.html" CLASS=mv2style TARGET="entree"> . Pupilles </A><BR>';
mv2_lien[1] += '<A HREF="benjamins1011-cadre.html" CLASS=mv2style TARGET="entree"> . Benjamins </A><BR>';
mv2_lien[1] += '<A HREF="poussins1011-cadre.html" CLASS=mv2style TARGET="entree"> . Poussins </A><BR>';
mv2_lien[1] += '<A HREF="prepoussins1011-cadre.html" CLASS=mv2style TARGET="entree"> . Prépoussins </A><BR>';
mv2_lien[1] += '<A HREF="saisonspassees.html" CLASS=mv2style TARGET="entree"> . Saisons passées </A><BR>';
mv2_lien[1] += '<A HREF="tournois.html" CLASS=mv2style TARGET="entree"> . Tournois </A><BR>';
mv2_lien[2] += '<A HREF="horairesentr.html" CLASS=mv2style TARGET="entree"> . Lieux et Horaires des entrainements 10-11</A><BR>';
mv2_lien[2] += '<A HREF="lieuxcompet.html" CLASS=mv2style TARGET="entree"> . Lieu et Horaires des compétitions 10-11</A><BR>';
mv2_lien[3] += '<A HREF="comite.html" CLASS=mv2style TARGET="entree"> . Comité Administratif</A><BR>';
mv2_lien[3] += '<A HREF="comitejeunes.html" CLASS=mv2style TARGET="entree"> . Comité des Jeunes 10-11</A><BR>';
mv2_lien[4] += '<A HREF="staff.html" CLASS=mv2style TARGET="entree"> . Staff technique 10-11</A><BR>';
mv2_lien[4] += '<A HREF="delegues.html" CLASS=mv2style TARGET="entree"> . Responsables-Délégués Equipes 10-11</A><BR>';
mv2_lien[5] += '<A HREF="festivites.html" CLASS=mv2style TARGET="entree">  . Festivités à venir</A><BR>';
mv2_lien[5] += '<A HREF="festivitespassees.html" CLASS=mv2style TARGET="entree">  . Festivités passées</A><BR>';
mv2_lien[6] += '<A HREF="exercice.html" CLASS=mv2style TARGET="entree"> . Exercices</A><BR>';
mv2_lien[6] += '<A HREF="cotisations.html" CLASS=mv2style TARGET="entree"> . Cotisations 10-11</A><BR>';
mv2_lien[6] += '<A HREF="presse.html" CLASS=mv2style TARGET="entree"> . Presse</A><BR>';
mv2_lien[6] += '<A HREF="sponsors.html" CLASS=mv2style TARGET="entree"> . Sponsors</A><BR>';
mv2_lien[6] += '<A HREF="liens.html" CLASS=mv2style TARGET="entree"> . Liens</A><BR>';
mv2_lien[6] += '<A HREF="historique.html" CLASS=mv2style TARGET="entree"> . Historique</A><BR>';

mv2_pos = -1;

function mv2_menu_draw()
	{
	mv2_aff = "<TABLE BORDER=0 BGCOLOR=#000000 CELLPADDING=0 CELLSPACING=0 WIDTH=160><TR><TD><TABLE BORDER=0 CELLPADDING=03 CELLSPACING=1 WIDTH=100%>";

	for(a=0;a<mv2_menu.length;a++)
		{
		if(mv2_pos == a || !document.getElementById)
			bgcolor = "#6699CC";
		else
			bgcolor = "#006699";
	if(document.getElementById)
			mv2_aff += "<TR><TD BGCOLOR="+bgcolor+"><A HREF=\"#\" onMouseOver=\"mv2_pos="+a+";mv2_menu_draw()\" CLASS=mv2style><FONT FACE=\"Verdana\" SIZE=2>"+mv2_menu[a]+"</FONT></A></TD></TR>";
		else
			mv2_aff += "<TR><TD BGCOLOR="+bgcolor+"><FONT FACE=\"Verdana\" SIZE=2 COLOR=#FFFFFF>"+mv2_menu[a]+"</FONT></TD></TR>"
	if(mv2_pos == a || !document.getElementById)
			mv2_aff += "<TR><TD BGCOLOR="+bgcolor+"><FONT FACE=\"Verdana\" SIZE=1>"+mv2_lien[a]+"</FONT></TD></TR>";
		}

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

mv2_menu_draw();
