	// 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.

	var sitepath = "/";
	if (TransMenu.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 TransMenuSet(TransMenu.direction.down, 0, 0, TransMenu.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		var menu1 = ms.addMenu(document.getElementById("entreprise")); 
		menu1.addItem("Notre soci&eacute;t&eacute;", "../entreprise/societe.php"); // send no URL if nothing should happen onclick
		menu1.addItem("Chiffres cl&eacute;s", "../entreprise/chiffres.php");
		menu1.addItem("Forces",  "../entreprise/forces.php");
		menu1.addItem("Cases Studies",  "../entreprise/cases.php");
		menu1.addItem("R&eacute;f&eacute;rences",  "../entreprise/reference.php");
		menu1.addItem("Espace Presse",  "../entreprise/presse.php");
		menu1.addItem("Recrutement",  "../entreprise/recrutement.php");
		menu1.addItem("Actualit&eacute;s",  "../entreprise/actualite.php");
		menu1.addItem("Geek",  "../entreprise/geek.php");
		menu1.addItem("Partenariat",  "../entreprise/partenaires.php");
		//==================================================================================================

		//==================================================================================================
		var menu1 = ms.addMenu(document.getElementById("hebergement"));
		menu1.addItem("Conception d'architectures",  "../hebergement/conception_archi.php");
		menu1.addItem("Equipements",  "../hebergement/equipements.php"); // send no URL if nothing should happen onclick
		menu1.addItem("Centres d'h&eacute;bergement",  "../hebergement/centre_hebergement.php");
		menu1.addItem("R&eacute;seaux et fibres",  "../hebergement/reseau.php");
		
		var submenu1 = menu1.addMenu(menu1.items[2]);
		submenu1.addItem("Datacenter AGARIK",  "../hebergement/datacenter.php");
		
		var submenu3 = menu1.addMenu(menu1.items[3]);
		submenu3.addItem("Bande Passante",  "../hebergement/bande_passante.php");
		submenu3.addItem("Liaisons point &agrave; point",  "../hebergement/liaison.php");
		submenu3.addItem("AgarIX",  "../hebergement/agarix.php");

		//==================================================================================================

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("services"));
		menu3.addItem("Supervision 24x7",  "../services/supervision.php");
		menu3.addItem("Managed Services",  "../services/managed.php");
		menu3.addItem("Outsourcing Services",  "../services/outsourcing.php");
		menu3.addItem("Autres Services web",  "../services/autres_service.php");
		//==================================================================================================

		//==================================================================================================
		var menu1 = ms.addMenu(document.getElementById("offres"));
		menu1.addItem("H&eacute;bergement Web",  "../offre/hebergement.php"); // send no URL if nothing should happen onclick
		menu1.addItem("Op&eacute;rateur / R&eacute;seaux",  "../offre/operateur_reseau.php");
		menu1.addItem("ASP",  "../offre/asp.php");
		
		var submenu0 = menu1.addMenu(menu1.items[0]);
		submenu0.addItem("Critical Hosting",  "../offre/critical_hosting.php");
		submenu0.addItem("Event Services",  "../offre/event_services.php");
		submenu0.addItem("Media Solutions",  "../offre/media_solution.php");
		submenu0.addItem("Storage Service Provider",  "../outils/storage.php");

		
		var submenu1 = menu1.addMenu(menu1.items[1]);
		submenu1.addItem("Bande Passante",  "../offre/bande_passante.php");
		submenu1.addItem("Liaisons points &agrave; points CWDM",  "../offre/liaison.php");
		submenu1.addItem("AgarIX",  "../offre/agarix.php");
		//==================================================================================================
		
			//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("outil"));
		menu4.addItem("Logiciel de supervision",  "../outils/operia.php");
		menu4.addItem("S&eacute;curit&eacute;",  "../outils/qualys.php");
		menu4.addItem("Sauvegarde",  "../outils/brightstor.php");
		menu4.addItem("Ressources On Demand",  "../outils/ressources.php");
		//==================================================================================================
		
			//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("contacts"));
		menu4.addItem("Nous contacter",  "../contact/contact.php");
		menu4.addItem("Nos coordonnées",  "../contact/coordonnees.php");
		menu4.addItem("Droits r&eacute;serv&eacute;s",  "../contact/exploitation.php");
		menu4.addItem("Contenu illicite",  "../contact/illicite.php");
		//==================================================================================================

		//==================================================================================================
		// 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.
		//==================================================================================================
		TransMenu.renderAll();
	};
