

/* A REGLER MANUELLEMENT SI LE CADRE EST TROP PETIT */
hauteurcadre = 25;

xmenu = new Array;
xlien = new Array;

xmenu[0] = 'Home';
xmenu[1] = 'Price list';
xmenu[2] = 'Advertising balloons';
xmenu[3] = 'Inflatable balloons';
xmenu[4] = 'Advertising blimps';
xmenu[5] = 'Dancing balloons';
xmenu[6] = 'Contact us'; 

xlien[0] = ''
xlien[1] = ''
xlien[2] = ''
xlien[3] = ''
xlien[4] = ''
xlien[5] = ''
xlien[6] = ''

xlien[0] += '<A HREF="./html/accueil.html" CLASS=menudyn3>Home</A>';
xlien[0] += ' | '
xlien[0] += '<A HREF="./html/email.html" CLASS=menudyn3>email</A>';

xlien[1] += '<A HREF="./html/standard.html" CLASS=menudyn3>Standard</A>';
xlien[1] += ' | '
xlien[1] += '<A HREF="./html/prix_personalises.html" CLASS=menudyn3>Custom balloons</A>';
xlien[1] += ' | '
xlien[1] += '<A HREF="./html/email.html" CLASS=menudyn3>email</A>';

xlien[2] += '<A HREF="./html/sportive.html" CLASS=menudyn3>Sport display</A>';
xlien[2] += ' | '
xlien[2] += '<A HREF="./html/patriotiques.html" CLASS=menudyn3>Patriotic display</A>';
xlien[2] += ' | '
xlien[2] += '<A HREF="./html/noel.html" CLASS=menudyn3>Christmas inflatables</A>';
xlien[2] += ' | '
xlien[2] +='<A HREF="./html/halloween.html" CLASS=menudyn3>Halloween balloons</A>';
xlien[2] += ' | '
xlien[2] += '<A HREF="./html/email.html" CLASS=menudyn3>email</A>';


xlien[3] += '<A HREF="./html/helium.html" CLASS=menudyn3>Helium balloons</A>';
xlien[3] += ' | '
xlien[3] += '<A HREF="./html/personnages.html" CLASS=menudyn3>Characters</A>';
xlien[3] += ' | '
xlien[3] +='<A HREF="./html/coeurs.html" CLASS=menudyn3>Heart balloons</A>';
xlien[3] += ' | '
xlien[3] += '<A HREF="./html/email.html" CLASS=menudyn3>email</A>';


xlien[4] += '<A HREF="./html/dirigeables.html" CLASS=menudyn3>Advertising blimps</A>';
xlien[4] += ' | '
xlien[4] += '<A HREF="./html/geants.html" CLASS=menudyn3>Giant balloons</A>';
xlien[4] += ' | '
xlien[4] += '<A HREF="./html/email.html" CLASS=menudyn3>email</A>';


xlien[5] += '<A HREF="./html/danseurs.html" CLASS=menudyn3>Dancing Balloons</A>';
xlien[5] += ' | '
xlien[5] += '<A HREF="./html/email.html" CLASS=menudyn3>email</A>';


xlien[6] += '<a HREF="./html/contact.html" CLASS=menudyn3>Contact Us</A>';
xlien[6] += ' | '
xlien[6] += '<A HREF="./html/email.html" CLASS=menudyn3>email</A>';


document.write('<STYLE TYPE="text/css">\nA.menudyn3 {color:#FFFFFF; text-decoration:none;}\nA:hover.menudyn3 {color:#CCCCCC;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=750>  <TR>');

for(i=0;i<xlien.length;i++)

{
	document.write('<TD BGCOLOR=#0033FF onMouseOver="javascript:colorIt(this);MajMenu('+i+')" ALIGN=center ID=td'+i+'><FONT SIZE=2 FACE="Verdana"><A HREF="#" onClick="return(false)" onMouseOver="MajMenu('+i+')" CLASS=menudyn3>'+xmenu[i]+'</A></FONT></TD>');
	}
document.write('</TR>  <TR>    <TD COLSPAN='+(xlien.length)+' BGCOLOR=#6699CC HEIGHT='+hauteurcadre+' VALIGN=top><ilayer id="dynamenu31" width=750 height='+hauteurcadre+'><layer id="dynamenu32" width=750 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='#0033FF';
	document.all.td1.style.background='#0033FF';
	document.all.td2.style.background='#0033FF';
	document.all.td3.style.background='#0033FF';
	document.all.td4.style.background='#0033FF';
	document.all.td5.style.background='#0033FF';
		tditem.style.background='#6699CC';
		}
else if(document.getElementById)
	{
			document.getElementById("td0").style.background='#0033FF';
	document.getElementById("td1").style.background='#0033FF';
	document.getElementById("td2").style.background='#0033FF';
	document.getElementById("td3").style.background='#0033FF';
	document.getElementById("td4").style.background='#0033FF';
	document.getElementById("td5").style.background='#0033FF';
tditem.style.background='#6699CC';
	}
}

function MajMenu(menu)
	{
	which = xlien[menu];
if (document.layers){
	document.dynamenu31.document.dynamenu32.document.write('<FONT SIZE=2 FACE="Verdana">'+which+'</FONT>')
	document.dynamenu31.document.dynamenu32.document.close()
	}
else if (document.getElementById)
			{
			document.getElementById("dynamenu33").innerHTML = '<CENTER><FONT SIZE=2 FACE="Verdana, Arial"><B>'+which+'</B></FONT></CENTER>';
			}
else 	if (document.all){
	dynamenu33.innerHTML='&nbsp;'
	dynamenu33.innerHTML='<FONT SIZE=2 FACE="Verdana">'+which+'</FONT>';
	}
}
if (document.getElementById)
	colorIt(document.getElementById("td0"));
else if (document.all){
	colorIt(document.all.td0);
	}
MajMenu(0);
