/*
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] = 'Conditions Générales';
xmenu[1] = 'Partenaires Aériens';
xmenu[2] = 'Nos Agences';
xmenu[3] = 'Notre Flotte';
xmenu[4] = 'Nos Offres Spéciales';
xmenu[5] = 'Tarifs et Réservations';


xlien[0] = ''
xlien[1] = ''
xlien[2] = ''
xlien[3] = ''
xlien[4] = ''
xlien[5] = ''
xlien[0] += '<A HREF="http://www.hertztahiti.com/conditions/tahiti.html" CLASS=menudyn3>Tahiti</A>';
xlien[1] += '<A HREF="http://www.hertztahiti.com/partenaires/partenaires.html" CLASS=menudyn3>Air France</A>';
xlien[1] += ' | '
xlien[1] += '<A HREF="http://www.hertztahiti.com/partenaires/partenaires.html" CLASS=menudyn3>Air New Zealand</A>';
xlien[1] += ' | '
xlien[1] += '<A HREF="http://www.hertztahiti.com/partenaires/partenaires.html" CLASS=menudyn3>Air Calin</A>';
xlien[1] += ' | '
xlien[1] += '<A HREF="http://www.hertztahiti.com/partenaires/partenaires.html" CLASS=menudyn3>Quantas</A>';
xlien[2] += '<A HREF="http://www.hertztahiti.com/agences/agences.html#Tahiti" CLASS=menudyn3>Tahiti</A>';
xlien[2] += ' | '
xlien[2] += '<A HREF="http://www.hertztahiti.com/agences/agences.html#Huahine" CLASS=menudyn3>Huahine</A>';
xlien[2] += ' | '
xlien[2] += '<A HREF="http://www.hertztahiti.com/agences/agences.html#Raiatea" CLASS=menudyn3>Raiatea</A>';
xlien[2] += ' | '
xlien[2] += '<A HREF="http://www.hertztahiti.com/agences/agences/agences.html#Tahaa" CLASS=menudyn3>Tahaa</A>';
xlien[3] += '<A HREF="http://www.hertztahiti.com/flottes/tahiti.html" CLASS=menudyn3>Tahiti</A>';
xlien[4] += '<A HREF="http://www.hertztahiti.com/offres/lld.html" CLASS=menudyn3>Location Longue Durée</A>';
xlien[4] += ' | '
xlien[4] += '<A HREF="http://www.hertztahiti.com/offres/loa.html" CLASS=menudyn3>Location avec Option d\'Achat</A>';
xlien[4] += ' | '
xlien[4] += '<A HREF="http://www.hertztahiti.com/offres/occasion.html" CLASS=menudyn3>Hertz Occasion</A>';
xlien[5] += '<A HREF="http://www.hertztahiti.com/tarifs/polynesie.html" CLASS=menudyn3>Polynésie Française</A>';
xlien[5] += ' | '
xlien[5] += '<A HREF="http://www.hertztahiti.com/tarifs/france.html" CLASS=menudyn3>France</A>';
xlien[5] += ' | '
xlien[5] += '<A HREF="http://www.hertztahiti.com/tarifs/international.html" CLASS=menudyn3>International</A>';
document.write('<STYLE TYPE="text/css">\nA.menudyn3 {color:#FFD000; text-decoration:none;}\nA:hover.menudyn3 {color:#FFFFFF;text-decoration:none;}\n</STYLE>');

document.write('<TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0 WIDTH='+(xlien.length*100)+' BGCOLOR=#000000>  <TR><TD><TABLE CELLPADDING=2 CELLSPACING=1 BORDER=0 WIDTH=100%>  <TR>');

for(i=0;i<xlien.length;i++)

{
	document.write('<TD BGCOLOR=#000000 onMouseOver="javascript:colorIt(this);MajMenu('+i+')" ALIGN=center ID=td'+i+'><FONT SIZE=1 FACE="Verdana"><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=#7B7B7B 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='#000000';
	document.all.td1.style.background='#000000';
	document.all.td2.style.background='#000000';
	document.all.td3.style.background='#000000';
	document.all.td4.style.background='#000000';
	document.all.td5.style.background='#000000';
		tditem.style.background='#7B7B7B';
		}
else if(document.getElementById)
	{
			document.getElementById("td0").style.background='#000000';
	document.getElementById("td1").style.background='#000000';
	document.getElementById("td2").style.background='#000000';
	document.getElementById("td3").style.background='#000000';
	document.getElementById("td4").style.background='#000000';
	document.getElementById("td5").style.background='#000000';
tditem.style.background='#7B7B7B';
	}
}

function MajMenu(menu)
	{
	which = xlien[menu];
if (document.layers){
	document.dynamenu31.document.dynamenu32.document.write('<FONT SIZE=1 FACE="Verdana"><B><I>'+which+'</I></B></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"><B><I>'+which+'</I></B></FONT>';
	}
}
if (document.getElementById)
	colorIt(document.getElementById("td0"));
else if (document.all){
	colorIt(document.all.td0);
	}
MajMenu(0);

