	// set up drop downs anywhere in the body of the page. I think the bottom of the page is better.. 
	// but you can experiment with effect on loadtime.
	if (mtDropDown.isSupported()) {


		//==================================================================================================
		// create a set of dropdowns
		//==================================================================================================
		// the first param should always be down, as it is here
		//
		// The second and third param are the top and left offset positions of the menus from their actuators
		// respectively. To make a menu appear a little to the left and bottom of an actuator, you could use
		// something like -5, 5
		//
		// The last parameter can be .topLeft, .bottomLeft, .topRight, or .bottomRight to inidicate the corner
		// of the actuator from which to measure the offset positions above. Here we are saying we want the 
		// menu to appear directly below the bottom left corner of the actuator
		//==================================================================================================
		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);


		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================


		// Actualité
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem('ARCHIVES', '/archives.php'); 
		menu1.addItem('TRANSFERTS', '/transferts.php'); 
		menu1.addItem('MONACO EN LIGUE 1', '/ligue-1.php'); 
		menu1.addItem('CLASSEMENT DE LA LIGUE 1', '/classement.php'); 
		menu1.addItem('RÉSULTATS DE LA LIGUE 1', '/resultats-ligue-1.php'); 
		menu1.addItem('CALENDRIER DE LA LIGUE 1', '/calendrierl1.php'); 
		menu1.addItem('COUPES D\'EUROPE', '/coupes-europe.php'); 
		menu1.addItem('COUPES NATIONALES', '/coupes-nationales.php'); 


		// Club
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem('ORGANIGRAMME', '/organigramme.php');
		menu2.addItem('HISTORIQUE', '/historique.php');
		menu2.addItem('PALMARÈS', '/palmares.php');
		menu2.addItem('EFFECTIF PROFESSIONNEL', '/effectif-professionnel.php');
		menu2.addItem('EFFECTIF DE LA CFA 2', '/effectif-cfa.php');
		menu2.addItem('CENTRE DE FORMATION', '/centre-de-formation.php');
		menu2.addItem('STADE LOUIS 2', '/stade-louis-ii.php');
		menu2.addItem('LA TURBIE', '/la-turbie.php');
		menu2.addItem('LA PRINCIPAUTÉ', '/la-principaute.php');
		menu2.addItem('BLESSURES', '/blessures.php');


		/*
		// Compétitions
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem('LIGUE 1', 'ligue-1.php');
		menu3.addItem('COUPES NATIONALES', 'coupes-nationales.php');
		menu3.addItem('COUPES D\'EUROPE', 'coupes-europe.php');
		menu3.addItem('CFA', 'cfa.php');
		*/
		
		// Médiathèque
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem('ALBUM PHOTOS', '/album-photos.php');
		menu4.addItem('GOODIES', '/goodies.php');
		menu4.addItem('BUT PAR BUT', '/but-par-but.php');
    menu4.addItem('MONTAGES VIDÉOS', '/montages-videos.php');
		menu4.addItem('REPORTAGES TÉLÉVISÉS', '/reportages-televises.php');
		menu4.addItem('INTERVIEWS', '/interviews.php');
		menu4.addItem('CHANTS SUPPORTERS', '/chants-supporters.php');


		// BOUTIQUES
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem('PHOTOS', '/photos-1.html');
		menu5.addItem('BLOGS', '/blogs-1.html');
		menu5.addItem('RUMEURS', '/rumeurs-1.html');
		menu5.addItem('ARTICLES', '/articles.php');
		menu5.addItem('RADIOWEB', '/radioweb.php');
		menu5.addItem('FORUM', '/forum/');


		
		//==================================================================================================
		// write drop downs into page
		//==================================================================================================
		// this method writes all the HTML for the menus into the page with document.write(). It must be
		// called within the body of the HTML page.
		//==================================================================================================
		
		mtDropDown.renderAll();
	}
