// @Marlau-Editions

var menu = new Array(

	new Array(
		'Abonnement'
			  , 'Télécharger le PDF', 'IMAGES/telepdf/abontol.pdf'
	),
	new Array(
		'Anciens numéros'
			  , 'Commander', 'IMAGES/telepdf/ancienum.pdf'
	),
	new Array(
		'Articles'
			  , 'DOSSIERS', 'articles/t dossiers.html'
			  , 'Assemblage - Soudage', 'articles/t assemblage.html'
			  , 'CAO - CFAO - GPAO...', 'articles/t cao.html'
			  , 'Déc-Emboutissage', 'articles/t dec emb.html'
			  , 'Découpe sans outils', 'articles/t dec ss outil.html'
			  , 'Finition', 'articles/t finition.html'
			  , 'Ligne de fabrication', 'articles/t ligne fab.html'
			  , 'Mesure - Contrôle', 'articles/t mesure cont.html'
			  , 'Planage, Profilage, Roulage...', 'articles/t roulage.html'
			  , 'Pliage', 'articles/t pliage.html'
			  , 'Poinçonnage', 'articles/t poinc.html'
			  , 'Robotique', 'articles/t robot.html'
			  , 'Tube - Profilé', 'articles/t tube fil.html'
			  , 'Autres', 'articles/t divers.html'
	),
	new Array(
		'Publicité'
			  , 'Programme rédactionnel', 'publicite/pub.html'
			  , 'Tarifs magazine', 'publicite/pub2-magazine.html'
			  , 'Tarifs Web', 'publicite/pub2-web.html'
	),
	new Array(
		'Salons'
			  , 'Année 2010', 'salons/salons.html'
	),
	new Array(
		'Petites annonces'
			  , 'Voir les annonces', 'articles/Carnet.html'
	)

);


function $(e) { return( document.all ? document.all[e] : document.getElementById(e) ); }
function mv2_menu_draw(j) {

	var tmp = "<style type='text/css'>a.mv2style{color:#FFFF00;text-decoration:none;} a:hover.mv2style{color:#FFFF00;text-decoration:none;}</style>";
	tmp += "<table border='0' bgcolor='#666666' cellpadding='0' cellspacing='0' width='160'><tr><td><table border='0' cellpading='03' cellspacing='1' width='100%'>";

	for ( var i=0,s=menu.length; i<s; i++ ) {
		tmp += "<tr><td bgcolor='"+(j==i?'#144869':'#666666')+"'><a href='#' onMouseOver='mv2_menu_draw("+ 	i +")' class='mv2style'><font face='Arial' size='2'>"+ menu[i][0] +"</font></a></td></tr>";
		if( i==j ) {
			tmp += "<tr><td bgcolor='#144869'><font face='Arial' size='1'>";
			for(var l=1,k=menu[i].length; l<k; l+=2 ) 
					tmp += "<a href='http://www.tolerie-mag.com/"+menu[i][l+1]+"' class='mv2style' target='MenuPrincipal'> . "+menu[i][l]+"</a><br>";
			tmp += "</font></td></tr>";
		}
	}
	tmp += "</table></td></tr></table>";
	$("mv2").innerHTML = tmp;
}
mv2_menu_draw(-1);