document.write('<STYLE TYPE="text/css">\na.menustyle {color:#000000;text-decoration:none;}\na:hover.menustyle {color:;text-decoration:underlined;}\n</STYLE>');

menu_title = new Array();
menu_link = new Array();

menu_title[0] = 'Eolienne';

menu_link[0] = ''
menu_link[0] += '<A HREF="eolienne/airx.html" CLASS=menustyle TARGET="mainFrame"> ° AIR X</A><BR>';
menu_link[0] += '<A HREF="eolienne/whisper100.html" CLASS=menustyle TARGET="mainFrame"> ° Whisper 100</A><BR>';
menu_link[0] += '<A HREF="eolienne/whisper200.html" CLASS=menustyle TARGET="mainFrame"> ° Whisper 200</A><BR>';
menu_link[0] += '<A HREF="eolienne/whisper500.html" CLASS=menustyle TARGET="mainFrame"> ° Whisper 500</A><BR>';


menu_pos = -1;

function menu_title_draw()
	{
	menu_aff = "<TABLE BORDER=0 BGCOLOR=#000000 CELLPADDING=0 CELLSPACING=0 WIDTH=135><TR><TD><TABLE BORDER=0 CELLPADDING=06 CELLSPACING=1 WIDTH=100%>";

	for(a=0;a<menu_title.length;a++)
		{
			bgcolor = "#CCFFBB";
			bgcolor2 = "#33FFBB";
			menu_aff += "<TR><TD BGCOLOR="+bgcolor2+"><FONT FACE=\"Verdana\" SIZE=2 COLOR=#000000>"+menu_title[a]+"</FONT></TD></TR>"
			menu_aff += "<TR><TD BGCOLOR="+bgcolor+"><FONT FACE=\"Verdana\" SIZE=1>"+menu_link[a]+"</FONT></TD></TR>";
		}

	menu_aff += "</TABLE></TD></TR></TABLE>";
	if(document.getElementById)
		document.getElementById("menu").innerHTML = menu_aff;
	else
		document.write(menu_aff);
	}

menu_title_draw();

