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] = 'Panneau solaire';
menu_title[1] = 'Accessoire solaire';


menu_link[0] = ''
menu_link[1] = ''
menu_link[0] += '<A HREF="solaire/monocristallin.html" CLASS=menustyle TARGET="mainFrame"> ° Monocristallin</A><BR>';
menu_link[0] += '<A HREF="solaire/polycristallin.html" CLASS=menustyle TARGET="mainFrame"> ° Polycristallin</A><BR>';
menu_link[0] += '<A HREF="solaire/amorphe.html" CLASS=menustyle TARGET="mainFrame"> ° Amorphe</A><BR>';
menu_link[1] += '<A HREF="solaire/regulateur.html" CLASS=menustyle TARGET="mainFrame"> ° Régulateur</A><BR>';
menu_link[1] += '<A HREF="solaire/convertisseur-onduleur.html" CLASS=menustyle TARGET="mainFrame"> ° Convertisseur - Onduleur</A><BR>';
menu_link[1] += '<A HREF="solaire/batterie.html" CLASS=menustyle TARGET="mainFrame"> ° Batterie - Accumulateur</A><BR>';
menu_link[1] += '<A HREF="solaire/eclairage.html" CLASS=menustyle TARGET="mainFrame"> ° Eclairage</A><BR>';
menu_link[1] += '<A HREF="solaire/pompe.html" CLASS=menustyle TARGET="mainFrame"> ° Pompe</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 = "#FFFF99";
			bgcolor2 = "#FFFF00";
			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();

