/*
SCRIPT TROUVE SUR L'EDITEUR JAVASCRIPT
http://www.editeurjavascript.com
*/

/* A REGLER MANUELLEMENT SI LE CADRE EST TROP PETIT */
bgcolor='#FFFFFF';

hauteurcadre = 20;

xmenu = new Array;
xlien = new Array;


xmenu[1] = ' <A HREF="index.php" CLASS=menudyn3>Accueil</A> ';
xmenu[2] = ' <A HREF="pro.php" CLASS=menudyn3>Professionnels</A> ';
xmenu[3] = ' <A HREF="part.php" CLASS=menudyn3>Particuliers</A> ';
xmenu[4] = ' <A HREF="produits.php" CLASS=menudyn3>Placements</A> ';
xmenu[5] = ' <A HREF="divers.php" CLASS=menudyn3>Le Cabinet</A> ';
xmenu[6] = ' <A HREF="plan.php" CLASS=menudyn3>Plan/contacts</A> ';
xmenu[7] = '';


xlien[1] = ''
xlien[2] = ''
xlien[3] = ''
xlien[4] = ''
xlien[5] = ''
xlien[6] = ''
xlien[7] = ''



xlien[1] += '<DIV ALIGN="center"><A HREF="index.php" CLASS=menudyn3>Retour à la page d\'accueil.</A>';
xlien[2] += '<DIV ALIGN="center"><A HREF="pro.php" CLASS=menudyn3>Nos solutions pour vos assurances professionnels.</A>';
xlien[3] += '<DIV ALIGN="center"><A HREF="part.php" CLASS=menudyn3>Automobile, Multirisque Habitation, Complémentaire Santé,<BR>Protection familiale, Assurance de Prêt.</A>';
xlien[4] += '<DIV ALIGN="center"><A HREF="produits.php" CLASS=menudyn3>Placements d\'assurance vie, capitalisation, retraite.</A>';
xlien[5] += '<DIV ALIGN="center"><A HREF="divers.php" CLASS=menudyn3>Le Cabinet de Courtage en quelques lignes.</A>';
xlien[6] += '<DIV ALIGN="center"><A HREF="plan.php" CLASS=menudyn3>Plan d\'accès à Nîmes Courtage et toutes nos coordonnées.</A>';
xlien[7] += '';

document.write('<STYLE TYPE="text/css">\nA.menudyn3 {color:#000000; text-decoration:none;}\nA:hover.menudyn3 {color:#C2281C;text-decoration:none;}\n</STYLE>');

document.write('<TABLE WIDTH=630 BORDER=0><TR>');

for(i=1;i<xlien.length;i++)

{
	document.write('  <TD width=90 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="6" HEIGHT='+hauteurcadre+' ALIGN=center VALIGN=middle><ilayer id="dynamenu31" height='+hauteurcadre+'><layer id="dynamenu32" height='+hauteurcadre+'><div id="dynamenu33">&nbsp;</div></layer></ilayer></TD><TD></TD></TR></TABLE>');

function colorIt(tditem)
	{
	if(document.all)
		{
			
	document.all.td1.style.background='#7C00FF';
	document.all.td2.style.background='#3AA5FF';
	document.all.td3.style.background='#62BB46';
	document.all.td4.style.background='#FFFF00';
	document.all.td5.style.background='#FF8C00';
	document.all.td6.style.background='#C2281C';
	document.all.td7.style.background='#FFFFFF';
	
	tditem.style.background=''+bgcolor+''; <!-- dessus -->
		}
else if(document.getElementById)
	{
			
	document.getElementById("td1").style.background='#7C00FF';
	document.getElementById("td2").style.background='#3AA5FF';
	document.getElementById("td3").style.background='#62BB46';
	document.getElementById("td4").style.background='#FFFF00';
	document.getElementById("td5").style.background='#FF8C00';
	document.getElementById("td6").style.background='#C2281C';
	document.getElementById("td7").style.background='#FFFFFF';
	
	tditem.style.background=''+bgcolor+'';
	}
}

function MajMenu(menu)
	{
	which = xlien[menu];
if (document.layers){
	document.dynamenu31.document.dynamenu32.document.write('<FONT SIZE=1 FACE="Arial"><I>'+which+'</I></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="Arial"><I>'+which+'</I></FONT>';
	}
}
if (document.getElementById)
	colorIt(document.getElementById("td7"));
else if (document.all){
	colorIt(document.all.td7);
	}
MajMenu(1);
