/*
http://www.editeurjavascript.com
*/
menuTexte=new Array();
menuLink=new Array();
menuTexte[0]= 'ACCUEIL';
menuLink[0]= 'index.htm';
menuTexte[1]= 'Situation';
menuLink[1]= 'situation.htm';
menuTexte[2]= 'Locaux';
menuLink[2]= 'locaux.htm';
menuTexte[3]= 'G&icirc;tes';
menuLink[3]= 'gites.htm';
menuTexte[4]= 'Stages';
menuLink[4]= 'stages.htm';
menuTexte[5]= 'S&eacute;jours';
menuLink[5]= 'sejours.htm';
menuTexte[6]= 'Acc&egrave;s';
menuLink[6]= 'acces.htm';
menuTexte[7]= 'Tarifs';
menuLink[7]= 'tarifs.htm';
menuTexte[8]= 'Contact';
menuLink[8]= 'contact.php';
menuTexte[9]= 'Liens';
menuLink[9]= 'liens.htm';

document.write('<div id="obj1" style="position:absolute;top:0px;left:0px;visibility:visible;background:black"><table cellpadding="3" cellspacing="2" border="0" width="100%" height="30"><TR>')
a = 0;
pourcent=100/menuTexte.length
while(a < menuTexte.length)
	{
	document.write('<td bgcolor="#006600" align="center" valign="middle" width="'+pourcent+'%"><font size="2" face="Verdana"><B><I><A HREF="'+menuLink[a]+'">'+menuTexte[a]+'</A></I></B></FONT></TD>');
	a++;
	}
document.write('</tr></table></div>');

	var div1 = document.getElementById("obj1").style;
	var objet;
		
	function placeObj(px,py) 
		{
	  	div1.left=px;
	  	div1.top=py;
	 	}

	function voirMenu() 
		{
	  	var posy;
	  	if (navigator.appName=="Microsoft Internet Explorer") 
			{
			offsety = document.body.scrollTop;
			offsetx = document.body.scrollLeft;
			}
	  	else 
			{
			offsety = window.pageYOffset;
			offsetx = window.pageXOffset;
			}
	  	placeObj(0,offsety);
		tempo = setTimeout("voirMenu()",50);
		}

if(document.getElementById)
	voirMenu();

