	// 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 srv = "wmi/";
	var lang = "";
	var sitepath = srv ;
	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, 10, -8, 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("solutions"));
		
		menu1.addItem("Messagerie", "../produit/exchange2007.aspx", ""); 
		menu1.addItem("Suites collaboratives", "../produit/sharepoint.aspx", ""); 
		menu1.addItem("CRM", "../produit/crm.aspx", "");
		menu1.addItem("Mobilit&eacute;", "../solutions/mobilite.aspx", "");
		menu1.addItem("S&eacute;curit&eacute;", "../solutions/securite.aspx", "");

		var submenu0 = menu1.addMenu(menu1.items[0]);
		submenu0.addItem("Exchange 2007",  "../produit/exchange2007.aspx", "");
		submenu0.addItem("S&eacute;curit&eacute;",  "../solutions/securite.aspx", "");	
		
		var submenu1 = menu1.addMenu(menu1.items[1]);
		submenu1.addItem("SharePoint",  "../produit/sharepoint.aspx", "");
		submenu1.addItem("Live Communication Server",  "../produit/livecom.aspx", "");			
		
		var submenu2 = menu1.addMenu(menu1.items[2]);
		submenu2.addItem("CRM dynamics 3.0", "../produit/crm.aspx", "");
		
		var submenu3 = menu1.addMenu(menu1.items[3]);
		submenu3.addItem("Blackberry",  "../solutions/mobilite.aspx", "");
		submenu3.addItem("Pushmail",  "../solutions/mobilite.aspx", "");	
		
		var submenu4 = menu1.addMenu(menu1.items[4]);
		submenu4.addItem("Anti virus, Anti Spam",  "../solutions/securite.aspx", "");
		submenu4.addItem("Archivage PRA",  "../solutions/pra.aspx", "");	
				//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("hebergement"));
		//menu2.addItem("Approche",  "approche.php");
		menu2.addItem("Core Services d'h&eacute;bergements",  "../hebergement/core_service.aspx", "");
		menu2.addItem("Infrastructures", "../societe/infrastructures.aspx", "");
		menu2.addItem("Web : Agarik", "http://www.agarik.com", "_blank");
		
		
		//==================================================================================================

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("societe"));
		menu3.addItem("Notre soci&eacute;t&eacute;",  "../societe/societe.aspx", "");
		menu3.addItem("Nos garanties", "../societe/garantie.aspx", "");
		menu3.addItem("Nos r&eacute;f&eacute;rences",  "../societe/references.aspx", "");
				
		//==================================================================================================

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("presse"));
		menu4.addItem("Nos communiqu&eacute;s", "../presse/communiques.aspx", "");
		menu4.addItem("Revue de presse",  "../presse/revue_presse.aspx", "");


		//==================================================================================================	

		//==================================================================================================
		// 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();
	};