var MENUS =
	[
		[
			["Présentation","index.php?page=presentation"]
		],
		[
			["Salon Art en Capital","index.php?page=salonartencapital"],
			["Présentation","index.php?page=salonartencapital"],
			["Galerie","galerie.php?salon=capital&debut=1"],
			["Revue de presse","index.php?page=presseartencapital"]
		],
		[
			["Contact","index.php?page=contact"]
		],
		[
			["Plus...","index.php?page=historique"],
			["Historique de la société","index.php?page=historique"],
			["Sociétariat","index.php?page=societariat"],
			["Publications","index.php?page=publications"]
		]
   ];
document.write ("<div id='liens1' >");

for(var i = 0, j = MENUS.length; i<j; i++)
	{
	document.write ("<a href='"+MENUS[i][0][1]+"' class='titremenu'>"+MENUS[i][0][0]+"&nbsp;&nbsp;<font color='#555555'>|</font></a>");
	if(MENUS[i].length>1)
		{
		document.write ("<div class='men' style='height:1px;");
		//document.write ("width:1px;");
		document.write ("visibility:hidden;'>");
		for(var k = 1, l = MENUS[i].length; k<l; k++)
			{
			if(k==1) var positionback = "background-position:left top";
			else if(k == l-1) var positionback = "background-position:left bottom";
			else var positionback = "background-position:left 50%";
			document.write ("<span class='smsbas' style='"+positionback+"'>");
			document.write ("<a class='smshaut' style='"+positionback+"' href='"+MENUS[i][k][1]+"' >"+MENUS[i][k][0]+"</a></span>");
			}
		document.write ("</div>");
		}
	}
document.write ("</div>");

