/*
SCRIPT TROUVE L'EDITEUR JAVASCRIPT
http://www.editeurjavascript.com
*/
menuTexte=new Array();
menuLink=new Array();
menuTexte[0]= 'WELCOME';
menuLink[0]= 'http://www.darattika.com/en/index_en.htm';
menuTexte[1]= 'ATTIKA RIAD';
menuLink[1]= 'http://www.darattika.com/en/Riad_description_en.htm';
menuTexte[2]= 'RIAD VISIT';
menuLink[2]= 'http://www.darattika.com/en/Visite Riad_en.htm';
menuTexte[3]= 'ATTIKA DAR';
menuLink[3]= 'http://www.darattika.com/en/Dar_description_en.htm';
menuTexte[4]= 'DAR VISIT';
menuLink[4]= 'http://www.darattika.com/en/Visite_Dar_en.htm';
menuTexte[5]= 'RATES';
menuLink[5]= 'http://www.darattika.com/en/Les_Tarifs_en.htm';
menuTexte[6]= 'CONTACT US';
menuLink[6]= 'http://www.darattika.com/en/contact_en.htm';
menuTexte[7]= 'LINKS';
menuLink[7]= 'http://www.darattika.com/en/liens_en.htm';

document.write('<div id="obj1" style="position:absolute;top:0px;left:0px;visibility:visible;background:#650103"><table cellpadding="3" cellspacing="2" border="0" width="65%" height="50"><TR>')
a = 0;
pourcent=100/menuTexte.length
while(a < menuTexte.length)
	{
	document.write('<td bgcolor="#650103" align="center" valign="middle" width="'+pourcent+'%"><font size="2" face="Verdana"><A HREF="'+menuLink[a]+'">'+menuTexte[a]+'</A></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();

