/*
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:;text-decoration:underlined;}\n</STYLE>');

mv2_menu = new Array();
mv2_lien = new Array();

mv2_menu[0] = 'Accueil';
mv2_menu[1] = 'L\'AS Corsaire';

mv2_lien[0] = '<A HREF="index.html" CLASS=mv2style TARGET="_top"> . Accueil</A><BR>';
mv2_lien[1] = '<A HREF="presentation.html" CLASS=mv2style TARGET="_top"> . Qui sommes nous ? </A><BR>';
mv2_lien[1] += '<A HREF="documents_officiels.html" CLASS=mv2style TARGET="_top"> . Adhérer </A><BR>';
mv2_lien[1] += '<A HREF="documents_officiels.html" CLASS=mv2style TARGET="_top"> . Statuts </A><BR>';

mv2_menu[2] = 'Le Bateau';
mv2_menu[3] = 'Devenir propriétaire';
mv2_menu[4] = 'Réparation';
mv2_menu[5] = 'Régates';


mv2_lien[2] = '<A HREF="historique.html" CLASS=mv2style TARGET="_top"> . Historique </A><BR>';
mv2_lien[2] += '<A HREF="caracteristiques.html" CLASS=mv2style TARGET="_top"> . Caractéristiques </A><BR>';
mv2_lien[2] += '<A HREF="documents_officiels.html" CLASS=mv2style TARGET="_top"> . Régl. de série </A><BR>';
mv2_lien[2] += '<A HREF="assurance.html" CLASS=mv2style TARGET="_top"> . Assurance </A><BR>';
mv2_lien[3] = '<A HREF="proprietaire.html" CLASS=mv2style TARGET="_top"> . Neuf ou Occasion </A><BR>';
mv2_lien[3] += '<A HREF="construction_amateur.htm" CLASS=mv2style TARGET="_blank"> . Const. Amateur </A><BR>';
mv2_lien[4] = '<A HREF="chantiers.html" CLASS=mv2style TARGET="_top"> . Chantiers Conseillés </A><BR>';
mv2_lien[4] += '<A HREF="grand_carenage.html" CLASS=mv2style TARGET="_top"> . Réparer soi même </A><BR>';
mv2_lien[5] = '<A HREF="calendrier.html" CLASS=mv2style TARGET="_top"> . Calendrier Class.</A><BR>';
mv2_lien[5] += '<A HREF="classements.html" CLASS=mv2style TARGET="_top"> . Classements J.L.</A><BR>';
mv2_lien[5] += '<A HREF="http://ascorsaire.forumactif.com/bourse-des-equipiers-f22/" CLASS=mv2style TARGET="_blank"> . Bourse des équip.</A><BR>';
mv2_lien[5] += '<A HREF="corsaires_jauges.html" CLASS=mv2style TARGET="_top"> . Corsaires Jaugés.</A><BR>';

mv2_menu[6] = 'Croisière';
mv2_menu[7] = 'Actualités';
mv2_menu[8] = 'P. Annonces';
mv2_menu[9] = 'Galerie Photo';
mv2_menu[10] = 'Forum';
mv2_menu[11] = 'Liens';
mv2_menu[12] = 'Nous contacter';

mv2_lien[6] = '<A HREF="croisiere.html" CLASS=mv2style TARGET="_top"> . Croisière </A><BR>';
mv2_lien[7] = '<A HREF="actualites.html" CLASS=mv2style TARGET="_top"> . Actualités </A><BR>';
mv2_lien[8] = '<A HREF="petites_annonces.html" CLASS=mv2style TARGET="_top"> . Petites Annonces </A><BR>';
mv2_lien[9] = '<A HREF="album_photos.html" CLASS=mv2style TARGET="_top"> . Albums Photos </A><BR>';
mv2_lien[10] = '<A HREF="forum.html" CLASS=mv2style TARGET="_top"> . Forum </A><BR>'
mv2_lien[11] = '<A HREF="liens.html" CLASS=mv2style TARGET="_top"> . Liens </A><BR>'
mv2_lien[12] = '<A HREF="mailto:ascorsaire-france@netcourrier.com" CLASS=mv2style TARGET="_top"> . Contact </A><BR>'

mv2_pos = -1;

function mv2_menu_draw()
	{
	mv2_aff = "<TABLE BORDER=0 BGCOLOR=#000000 CELLPADDING=0 CELLSPACING=0 WIDTH=130><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 = "#000066";
	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><B>"+mv2_menu[a]+"</B></FONT></A></TD></TR>";
		else
			mv2_aff += "<TR><TD BGCOLOR="+bgcolor+"><FONT FACE=\"Verdana\" SIZE=2 COLOR=#FFFFFF><B>"+mv2_menu[a]+"</B></FONT></TD></TR>"
	if(mv2_pos == a || !document.getElementById)
			mv2_aff += "<TR><TD BGCOLOR="+bgcolor+"><FONT FACE=\"Verdana\" SIZE=1><B>"+mv2_lien[a]+"</B></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();
