	// 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("corporate")); 
		menu1.addItem("Our company", "../corporate/agarik-critical-hosting-factory.php"); // send no URL if nothing should happen onclick
		menu1.addItem("Key figures", "../corporate/agarik-key-figures.php");
		menu1.addItem("Our Strengths",  "../corporate/our-strengths.php");
		menu1.addItem("Our references",  "../corporate/our-references.php");
		//==================================================================================================

		//==================================================================================================
		var menu1 = ms.addMenu(document.getElementById("web-hosting"));
		menu1.addItem("Architecture design",  "../web-hosting/architecture-design.php");
		menu1.addItem("Equipment",  "../web-hosting/equipment.php"); // send no URL if nothing should happen onclick
		menu1.addItem("Hosting Centers",  "../web-hosting/hosting-center.php");
		menu1.addItem("Network",  "../web-hosting/network.php");
		
		var submenu1 = menu1.addMenu(menu1.items[2]);
		submenu1.addItem("Agarik Datacenter",  "../web-hosting/datacenter.php");
		
		var submenu3 = menu1.addMenu(menu1.items[3]);
		submenu3.addItem("Bandwidth",  "../web-hosting/bandwidth.php");
		submenu3.addItem("Point to Point Links",  "../web-hosting/network-and-fibers.php");
		submenu3.addItem("AgarIX",  "../web-hosting/agarix.php");

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

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("services"));
		menu3.addItem("24/7 Monitoring",  "../services/24x7-monitoring.php");
		menu3.addItem("Managed Services",  "../services/managed-services.php");
		menu3.addItem("Outsourcing Services",  "../services/outsourcing-services.php");
		menu3.addItem("Other Web Services",  "../services/web-services.php");
		//==================================================================================================

		//==================================================================================================
		var menu1 = ms.addMenu(document.getElementById("offers"));
		menu1.addItem("Web hosting",  "../offers/hosting.php"); // send no URL if nothing should happen onclick
		menu1.addItem("Storage Service Provider",  "../offers/storage-service-provider.php"); // send no URL if nothing should happen onclick

		var submenu0 = menu1.addMenu(menu1.items[0]);
		submenu0.addItem("Critical Hosting",  "../offers/critical_hosting.php");
		submenu0.addItem("Media Solutions",  "../offers/media_solutions.php");
		//==================================================================================================
		
			//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("tools"));
		menu4.addItem("Operia",  "../tools/operia.php");
		menu4.addItem("Qualys",  "../tools/qualys.php");
		menu4.addItem("Brighstor",  "../tools/brightstor.php");
		menu4.addItem("Ressources On Demand",  "../tools/ressources-on-demand.php");
		//==================================================================================================
		
			//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("contacts"));
		menu4.addItem("Contact us",  "../contact/contact-us.php");
		menu4.addItem("Our address",  "../contact/address.php");
		menu4.addItem("Reserved rights",  "../contact/reserved-rights.php");
		menu4.addItem("Illegal content",  "../contact/illegal-content.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();
	};