gauche=0
haut=0
target ='_self';

color1 = "#99FFFF";
color2 = "#01F4F4";
color3 = "#0000CC";

menutitre = new Array;
menulien = new Array;

	menutitre[0]= '2010&nbsp;&nbsp;&nbsp;'
	menulien[0]= 'fleursplastiques10.html'

	menutitre[1]= 'structure&nbsp;&nbsp;&nbsp;'
	menulien[1]= 'structure.html'

	menutitre[2]= 'pedagogie&nbsp;&nbsp;&nbsp;'
	menulien[2]= 'pedagogie.html'

	menutitre[3]= 'archives&nbsp;&nbsp;&nbsp;'
	menulien[3]= 'archives09.html'

	menutitre[4]= 'partenaires&nbsp;&nbsp;&nbsp;'
	menulien[4]= 'partenaires.html'

	menutitre[5]= 'contact&nbsp;&nbsp;&nbsp;'
	menulien[5]= 'contact.html'


document.write('<STYLE TYPE="text/css">#menu { position:absolute;top:'+haut+';left:'+gauche+'; }</STYLE>');

ie4=document.all
ns6=document.getElementById&&!document.all
ns4=document.layers

function placeMenu()
{
if (ie4) {menu.style.pixelTop=document.body.scrollTop+haut}
else if (ns6) {document.getElementById("menu").style.top=window.pageYOffset+haut}
else if (ns4) {eval(document.menu5.top=eval(window.pageYOffset+haut));}
if(ie4 || ns6 || ns4)
setTimeout("placeMenu()",1);
}

window.onload = placeMenu;
document.write('<SPAN ID=menu><table bgcolor=#99FFFF border=0 cellspacing=10 cellpadding=0 bordercolor=#01F4F4 WIDTH=110><TR><TD ALIGN=center><a href="index.html" target="_top"><img src="ima/few_logo_pt.gif" width="95" height="43" border="0" alt="accueil" align="right" vspace="10"></a></TD></TR>')
for(a=0;a<menulien.length;a++)
	{
	document.write('<TR><TD ALIGN=right onMouseOut="this.style.background=\''+color1+'\'" onMouseOver="this.style.background=\''+color2+'\'" STYLE="cursor:pointer" onClick="window.open(\''+menulien[a]+'\',\''+target+'\')"><A HREF="'+menulien[a]+'" TARGET="'+target+'" STYLE="font-size:12px;font-family:verdana;text-decoration:none;color:'+color3+'">'+menutitre[a]+'</A></TD></TR>');
	}
document.write('</TR></TABLE></SPAN>')
