/*
SCRIPT EDITE SUR L'EDITEUR JAVASCRIPT
http://www.editeurjavascript.com
*/
gauche5=2
haut5=32
target5 = '_self';
 	
 
 
 
color51 = "#0000CC";
color52 = "#3399FF";
color53 = "#CC0000";

menu5titre = new Array;
menu5lien = new Array;

	menu5titre[0]= 'Bienvenue'
	menu5lien[0]= 'index.html'
	menu5titre[1]= 'Immobilier'
	menu5lien[1]= 'immobilier.html'
	menu5titre[2]= 'Calculatrice'
	menu5lien[2]= 'calcul.html'
	menu5titre[3]= 'Mon bureau'
	menu5lien[3]= 'bureau.html'
	menu5titre[4]= 'Références'
	menu5lien[4]= 'reference.html'
	menu5titre[5]= 'A vendre'
	menu5lien[5]= 'avendre.html'
	menu5titre[6]= 'Humour'
	menu5lien[6]= 'humour.html'
document.write('<STYLE TYPE="text/css">#menu5 { position:absolute;top:'+haut5+';center:'+gauche5+'; }</STYLE>');

ie4=document.all
ns6=document.getElementById&&!document.all
ns4=document.layers

function placeMenu5() {
if (ie4) {menu5.style.pixelTop=document.body.scrollTop+haut5}
else if (ns6) {document.getElementById("menu5").style.top=window.pageYOffset+haut5}
else if (ns4) {eval(document.menu5.top=eval(window.pageYOffset+haut5));}
if(ie4 || ns6 || ns4)
	setTimeout("placeMenu5()",1);
}

window.onload = placeMenu5;
document.write('<SPAN ID=menu5><table bgcolor=#0000CC border=1 cellspacing=6 cellpadding=8 bordercolorlight=#000000 bordercolordark=#999966 WIDTH=140><TR>	<TD ALIGN=center><FONT FACE="Arial" SIZE=4 COLOR=#FFFFFF><B>Menu</B></FONT></TD></TR>')
for(a=0;a<menu5lien.length;a++)
	{
	document.write('<TR><TD onMouseOut="this.style.background=\''+color51+'\'" onMouseOver="this.style.background=\''+color52+'\'" STYLE="cursor:pointer" onClick="window.open(\''+menu5lien[a]+'\',\''+target5+'\')"><FONT FACE="Verdana, Arial" SIZE=3><B><A HREF="'+menu5lien[a]+'" TARGET="'+target5+'" STYLE="text-decoration:none;color:'+color53+'">'+menu5titre[a]+'</A></B></FONT></TD></TR>');
	}
document.write('</TR></TABLE></SPAN>')

