	// 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 (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.right, 0, 0, TransMenu.reference.topRight);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
	
		
		
		//FRENCH
		var menu2 = ms.addMenu(document.getElementById("about"));
		menu2.addItem("Bienvenue &agrave; l'ACSI", "/fr/apropos");
		menu2.addItem("Le conseil", "/fr/conseil-administration");
		menu2.addItem("Publicit&eacute;", "/fr/publicite");
		menu2.addItem("Salle de presse", "/fr/medias");
		
		var menu3 = ms.addMenu(document.getElementById("resources"));
		menu3.addItem("Aide psychologique  ", "/fr/aide-psychologique");
		menu3.addItem("Associations d'adoption", "/fr/adoptionassociations");
		menu3.addItem("Groupes de soutien", "/fr/groupes-soutien");
		menu3.addItem("Links - Liens", "/fr/liens");
		menu3.addItem("M&eacute;decine parall&egrave;le ", "/fr/medecine-parallele");
		menu3.addItem("Services d'adoption", "/fr/adoptionservices");

		var menu4 = ms.addMenu(document.getElementById("library"));
		menu4.addItem("Inscription gratuite", "/fr/inscription");
		menu4.addItem("Catalogue", "/fr/biblio");
		menu4.addItem("Adoption", "/fr/biblio/adoption");
		menu4.addItem("M&eacute;decine parall&egrave;le ", "/fr/biblio/medecine-para");
		menu4.addItem("Faits ", "/fr/biblio/faits");
		menu4.addItem("Lois", "/fr/biblio/lois");
		menu4.addItem("Aspects m&eacute;dicaux", "/fr/biblio/asp-medicaux");
		menu4.addItem("Fausses couches", "/fr/biblio/fausses-couches");
		menu4.addItem("Exp&eacute;riences v&eacute;cues", "/fr/biblio/experiences");
		menu4.addItem("Psychologie", "/fr/biblio/psychologie");
		menu4.addItem("Divers", "/fr/biblio/divers");
		
		var menu5 = ms.addMenu(document.getElementById("involved"));
		menu5.addItem("Appuyez notre lobbying", "/fr/lobby");
		menu5.addItem("Dons", "/fr/dons");
		menu5.addItem("Chandelle d'espoir", "/fr/chandelle");
		menu5.addItem("Parrainage d'entreprises", "/fr/parrainage");		

		var menu6 = ms.addMenu(document.getElementById("news"));
		menu6.addItem("Semaine canadienne de sensibilisation &agrave; l'infertilit&eacute;", "/fr/ciaw");
		menu6.addItem("Prochains &Eacute;v&eacute;nements", "/fr/prochainsevenements");
		menu6.addItem("Communiqu&eacute;s de presse", "/fr/communiquesdepresse");
		menu6.addItem("L'Assisted Conception Taskforce", "/fr/act");

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