/*
SCRIPT TROUVE SUR L'EDITEUR JAVASCRIPT
http://www.editeurjavascript.com
*/

/* A REGLER MANUELLEMENT SI LE CADRE EST TROP PETIT */
hauteurcadre = 20;

xmenu = new Array;
xlien = new Array;

xmenu[0] = '<A HREF="index.htm" CLASS=menudyn3>Accueil</A>';
xmenu[1] = 'Séjours individuels';
xmenu[2] = 'Séjours groupes';
xmenu[3] = '<A HREF="seminaire-incentive-bordeaux-gironde-aquitaine.htm" CLASS=menudyn3>Séminaires / Incentive</A>';
xmenu[4] = '<A HREF="contact.htm" CLASS=menudyn3>Contact</A>';


xlien[0] = ''
xlien[1] = ''
xlien[2] = ''
xlien[3] = ''
xlien[4] = ''
xlien[1] += '<A HREF="cyclotourisme.htm" CLASS=menudyn3>Cyclotourisme</A>';
xlien[1] += '<font color="#D6AC83"> | </font>'
xlien[1] += '<A HREF="randonnee-equestre-france-cheval.htm" CLASS=menudyn3>Equitation</A>';
xlien[1] += '<font color="#D6AC83"> | </font>'
xlien[1] += '<A HREF="pied.htm" CLASS=menudyn3>Rando pédestre</A>';
xlien[1] += '<font color="#D6AC83"> | </font>'
xlien[1] += '<A HREF="ane.htm" CLASS=menudyn3>Rando âne</A>';
xlien[1] += '<font color="#D6AC83"> | </font>'
xlien[1] += '<A HREF="vin_gastronomie.htm" CLASS=menudyn3>Vin/Gastronomie</A>';
xlien[1] += '<font color="#D6AC83"> | </font>'
xlien[1] += '<A HREF="traineau.htm" CLASS=menudyn3>Traîneau à chiens</A>';
xlien[1] += '<font color="#D6AC83"> | </font>'
xlien[1] += '<A HREF="raquette.htm" CLASS=menudyn3>Raquettes</A>';
xlien[1] += '<font color="#D6AC83"> | </font>'
xlien[1] += '<A HREF="canyoning.htm" CLASS=menudyn3>Canyoning</A>';
xlien[1] += '<font color="#D6AC83"> | </font>'
xlien[1] += '<A HREF="voile.htm" CLASS=menudyn3>Voile</A>';
xlien[1] += '<font color="#D6AC83"> | </font>'
xlien[1] += '<A HREF="mouche.htm" CLASS=menudyn3>Pêche sportive</A>';
xlien[1] += '<font color="#D6AC83"> | </font>'
xlien[1] += '<A HREF="remise-en-forme-bien-etre.htm" CLASS=menudyn3>Bien-être</A>';

xlien[2] += '<A HREF="sejours-groupes-sportifs.htm" CLASS=menudyn3>Mini séjours sportifs</A>';
xlien[2] += '<font color="#D6AC83"> | </font>'
xlien[2] += '<A HREF="sejours-groupes-touristiques.htm" CLASS=menudyn3>Circuits touristiques</A>';
xlien[2] += '<font color="#D6AC83"> | </font>'
xlien[2] += '<A HREF="Randonnees-groupes-a-pied-a-velo.htm" CLASS=menudyn3>Randonnées groupes</A>';

document.write('<STYLE TYPE="text/css">\nA.menudyn3 {color:#FFFFFF; text-decoration:none;}\nA:hover.menudyn3 {color:#881C1C;text-decoration:none;}\n</STYLE>');

document.write('<TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0 WIDTH='+(xlien.length*178)+' BGCOLOR=#C58B52>  <TR><TD><TABLE CELLPADDING=1 CELLSPACING=1 BORDER=0 WIDTH=100%>  <TR>');

for(i=0;i<xlien.length;i++)

{
	document.write('<TD BGCOLOR=#D6AC83 onMouseOver="javascript:colorIt(this);MajMenu('+i+')" ALIGN=center ID=td'+i+'><FONT SIZE=1 FACE="Verdana, Arial"><B><A HREF="#" onClick="return(false)" onMouseOver="MajMenu('+i+')" CLASS=menudyn3>'+xmenu[i]+'</A></B></FONT></TD>');
	}
document.write('</TR>  <TR>    <TD COLSPAN='+(xlien.length)+' BGCOLOR=#C58B52 HEIGHT='+hauteurcadre+' VALIGN=top><ilayer id="dynamenu31" width=100% height='+hauteurcadre+'><layer id="dynamenu32" width=100% height='+hauteurcadre+'><div id="dynamenu33">&nbsp;</div></layer></ilayer></TD>  </TR></TABLE></TD></TR></TABLE>');

function colorIt(tditem)
	{
	if(document.all)
		{
			document.all.td0.style.background='#D6AC83';
	document.all.td1.style.background='#D6AC83';
	document.all.td2.style.background='#D6AC83';
	document.all.td3.style.background='#D6AC83';
	document.all.td4.style.background='#D6AC83';
		tditem.style.background='#C58B52';
		}
else if(document.getElementById)
	{
			document.getElementById("td0").style.background='#D6AC83';
	document.getElementById("td1").style.background='#D6AC83';
	document.getElementById("td2").style.background='#D6AC83';
	document.getElementById("td3").style.background='#D6AC83';
	document.getElementById("td4").style.background='#D6AC83';
tditem.style.background='#C58B52';
	}
}

function MajMenu(menu)
	{
	which = xlien[menu];
if (document.layers){
	document.dynamenu31.document.dynamenu32.document.write('<FONT SIZE=1 FACE="Verdana, arial">'+which+'</FONT>')
	document.dynamenu31.document.dynamenu32.document.close()
	}
else if (document.getElementById)
			{
			document.getElementById("dynamenu33").innerHTML = '<CENTER><FONT SIZE=1 FACE="Verdana, Arial"><B>'+which+'</B></FONT></CENTER>';
			}
else 	if (document.all){
	dynamenu33.innerHTML='&nbsp;'
	dynamenu33.innerHTML='<FONT SIZE=1 FACE="Verdana">'+which+'</FONT>';
	}
}
if (document.getElementById)
	colorIt(document.getElementById("td0"));
else if (document.all){
	colorIt(document.all.td0);
	}
MajMenu(0);
