/* AUTEUR: anne dufour */
/* DATE DE CREATION: 14.06.01 */
/* A REGLER MANUELLEMENT SI LE CADRE EST TROP PETIT */
hauteurcadre = 50;

xmenu = new Array;
xlien = new Array;

xmenu[0] = '<a href="default.htm">Accueil</a>'
xmenu[1] = '<a href="equipe.htm">Qui sommes-nous</a>'
xmenu[2] = 'Nos spécialités';
xmenu[3] = 'Infos';
xmenu[4] = '<a href="liens.htm">Liens</a>'
xmenu[5] = '<a href="contact.htm">Contact</a>'


xlien[0] = ''
xlien[1] = ''
xlien[2] = ''
xlien[3] = ''
xlien[4] = ''
xlien[5] = ''
xlien[0] += '<A HREF="default.htm" CLASS=menudyn3>Retour à la page d\'Accueil</A>';
xlien[1] += '<A HREF="equipe.htm" CLASS=menudyn3>Notre labo, notre équipe</A>';
xlien[1] += ''
xlien[1] += ''
xlien[1] += ''
xlien[1] += ''
xlien[2] += '<A HREF="couronpont.htm" CLASS=menudyn3>Couronnes & Ponts</A>';
xlien[2] += ' | '
xlien[2] += '<A HREF="facettes.htm" CLASS=menudyn3>Facettes & Inlays</A>';
xlien[2] += ' | '
xlien[2] += '<A HREF="implants.htm" CLASS=menudyn3>Implants</A>';
xlien[2] += ' | '
xlien[2] += '<A HREF="protheses.htm" CLASS=menudyn3>Prothèses amovibles</A>';
xlien[2] += ' | '
xlien[2] += '<A HREF="veterinaire.htm" CLASS=menudyn3>Médecine Vétérinaire</A>';
xlien[2] += ' | '
xlien[2] += '<A HREF="procera.htm" CLASS=menudyn3>Procera®</A>';
xlien[2] += ''
xlien[3] += '<A HREF="labinfo.htm" CLASS=menudyn3>Lab.Info</A>';
xlien[3] += ' | '
xlien[3] += '<A HREF="infopatient.htm" CLASS=menudyn3>Patients</A>';
xlien[3] += ' | '
xlien[3] += '<A HREF="formation.htm" CLASS=menudyn3>Formation</A>';
xlien[3] += ' | '
xlien[3] += '<A HREF="location.htm" CLASS=menudyn3>Location matériel</A>';
xlien[3] += ' | '
xlien[3] += '<A HREF="urgences.htm" CLASS=menudyn3>Urgences</A>';
xlien[3] += ' | '
xlien[3] += '<A HREF="sourire.htm" CLASS=menudyn3>Souriez</A>';
xlien[3] += ' | '
xlien[3] += '<A HREF="telechargement.htm" CLASS=menudyn3>Téléchargement</A>';
xlien[4] += '<A HREF="liens.htm" CLASS=menudyn3>Retrouvez tous les liens en rapport avec notre profession</A>';
xlien[4] += ''
xlien[4] += '';
xlien[5] += '<A HREF="contact.htm" CLASS=menudyn3>Contactez-nous !</A>';
xlien[5] += ''
xlien[5] += ''
document.write('<STYLE TYPE="text/css">\nA.menudyn3 {color:#000000;font-weight:bold;text-decoration:none;}\nA:active.menudyn3 {color:#FFFFB3;font-weight:bold;text-decoration:none;}\nA:hover.menudyn3 {color:#FFFFB3;font-weight:bold;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=#006600 onMouseOver="javascript:colorIt(this);MajMenu('+i+')" ALIGN=center ID=td'+i+'><FONT SIZE=1 FACE="Arial"><A HREF="#" onClick="return(false)" onMouseOver="MajMenu('+i+')" CLASS=menudyn3>'+xmenu[i]+'</A></FONT></TD>');
	}
document.write('</TR>  <TR>    <TD COLSPAN='+(xlien.length)+' BGCOLOR=#339900 HEIGHT='+hauteurcadre+' VALIGN=center><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='#006600';
	document.all.td1.style.background='#006600';
	document.all.td2.style.background='#006600';
	document.all.td3.style.background='#006600';
	document.all.td4.style.background='#006600';
	document.all.td5.style.background='#006600';
		tditem.style.background='#339900';
		}
else if(document.getElementById)
	{
			document.getElementById("td0").style.background='#006600';
	document.getElementById("td1").style.background='#006600';
	document.getElementById("td2").style.background='#006600';
	document.getElementById("td3").style.background='#006600';
	document.getElementById("td4").style.background='#006600';
	document.getElementById("td5").style.background='#006600';
tditem.style.background='#339900';
	}
}

function MajMenu(menu)
	{
	which = xlien[menu];
if (document.layers){
	document.dynamenu31.document.dynamenu32.document.write('<FONT SIZE=1 FACE="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="Arial">'+which+'</FONT>';
	}
}
if (document.getElementById)
	colorIt(document.getElementById("td0"));
else if (document.all){
	colorIt(document.all.td0);
	}
MajMenu(0);
