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

document.write('<STYLE TYPE="text/css">\na.mv2style {color:#FFFFCC;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] = 'Economie';
mv2_menu[2] = 'Services communautaires';
mv2_menu[3] = 'Communes';
mv2_menu[4] = 'Visiter';
mv2_menu[5] = 'Autres services';
mv2_menu[6] = '<A HREF="marchespublics.html" CLASS=mv2style TARGET="mainFrame">Marchés publics</A>';


mv2_lien[0] = ''
mv2_lien[1] = ''
mv2_lien[2] = ''
mv2_lien[3] = ''
mv2_lien[4] = ''
mv2_lien[5] = ''
mv2_lien[0] += '<A HREF="accueil.html" CLASS=mv2style TARGET="mainFrame"> . Situation géographique</A><BR>';
mv2_lien[0] += '<A HREF="presentation.html" CLASS=mv2style TARGET="mainFrame"> . Présentation</A><BR>';
mv2_lien[0] += '<A HREF="contacts.html" CLASS=mv2style TARGET="mainFrame"> . Contacts</A><BR>';
mv2_lien[1] += '<A HREF="economie.html" CLASS=mv2style TARGET="mainFrame"> . Activités économiques</A><BR>';
mv2_lien[2] += '<A HREF="enfance.html" CLASS=mv2style TARGET="mainFrame"> . Accueil de loisirs</A><BR>';
mv2_lien[2] += '<A HREF="cybercentre.html" CLASS=mv2style TARGET="mainFrame"> . Cybercentre</A><BR>';
mv2_lien[2] += '<A HREF="sallereunion.html" CLASS=mv2style TARGET="mainFrame"> . Location salle</A><BR>';
mv2_lien[2] += '<A HREF="gensvoyages.html" CLASS=mv2style TARGET="mainFrame"> . Gens du Voyage</A><BR>';
mv2_lien[2] += '<A HREF="animauxerrants.html" CLASS=mv2style TARGET="mainFrame"> . Animaux errants</A><BR>';
mv2_lien[3] += '<A HREF="chenu.html" CLASS=mv2style TARGET="mainFrame"> . Chenu</A><BR>';
mv2_lien[3] += '<A HREF="disse.html" CLASS=mv2style TARGET="mainFrame"> . Dissé sous le Lude</A><BR>';
mv2_lien[3] += '<A HREF="bruere.html" CLASS=mv2style TARGET="mainFrame"> . La Bruère sur Loir</A><BR>';
mv2_lien[3] += '<A HREF="chapelle.html" CLASS=mv2style TARGET="mainFrame"> . La Chapelle aux Choux</A><BR>';
mv2_lien[3] += '<A HREF="luche.html" CLASS=mv2style TARGET="mainFrame"> . Luché-Pringé</A><BR>';
mv2_lien[3] += '<A HREF="lude.html" CLASS=mv2style TARGET="mainFrame"> . Le Lude</A><BR>';
mv2_lien[3] += '<A HREF="saintgermain.html" CLASS=mv2style TARGET="mainFrame"> . Saint-Germain d\'Arcé</A><BR>';
mv2_lien[3] += '<A HREF="savigne.html" CLASS=mv2style TARGET="mainFrame"> . Savigné sous le Lude</A><BR>';
mv2_lien[4] += '<A HREF="tourismeanimations.html" CLASS=mv2style TARGET="mainFrame"> . Tourisme Animations</A><BR>';
mv2_lien[4] += '<A HREF="sentiersrandonnee.html" CLASS=mv2style TARGET="mainFrame"> . Sentiers de randonnée</A><BR>';
mv2_lien[5] += '<A HREF="centresocial.html" CLASS=mv2style TARGET="mainFrame"> . Permanences services sociaux</A><BR>';
mv2_lien[5] += '<A HREF="orduresmenageres.html" CLASS=mv2style TARGET="mainFrame"> . Syndicat ordures ménagères</A><BR>';


mv2_pos = -1;

function mv2_menu_draw()
	{
	mv2_aff = "<TABLE BORDER=0 BGCOLOR=#FFFFFF CELLPADDING=0 CELLSPACING=0 WIDTH=200><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 = "#336600";
		else
			bgcolor = "#336600";
	if(document.getElementById)
			mv2_aff += "<TR><TD BGCOLOR="+bgcolor+"><A HREF=\"#\" onMouseOver=\"mv2_pos="+a+";mv2_menu_draw()\" CLASS=mv2style><FONT FACE=\"Arial\" SIZE=3><B>"+mv2_menu[a]+"</B></FONT></A></TD></TR>";
		else
			mv2_aff += "<TR><TD BGCOLOR="+bgcolor+"><FONT FACE=\"Arial\" SIZE=3 COLOR=#FFFFCC><B>"+mv2_menu[a]+"</B></FONT></TD></TR>"
	if(mv2_pos == a || !document.getElementById)
			mv2_aff += "<TR><TD BGCOLOR="+bgcolor+"><FONT FACE=\"Arial\" SIZE=2><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();

