	// 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.down, 1, 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("services"));
		menu1.addItem("Website Design", "/web_design/index.html");
		menu1.addItem("3D Graphics & Animation", "/3d/index.html");
		menu1.addItem("Online Marketing", "/web_design/search_engines.html");
		menu1.addItem("Video Production", "/video/index.html");
		menu1.addItem("CD & DVD Duplication", "/video/cd_dvd_duplication.html");
		menu1.addItem("Brand Design & Management", "/brand_management/index.html");

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

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("hosting"));
		menu2.addItem("Milano", "");

		var submenu1 = menu2.addMenu(menu2.items[0]);
		submenu1.addItem("Galeria", "");
		submenu1.addItem("Duomo", "");
		submenu1.addItem("Castle", "");
		//==================================================================================================

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("studies"));
		menu3.addItem("Web Design Studies");
		menu3.addItem("Video Studies");
		menu3.addItem("3D Studies");

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

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("news"));
		menu4.addItem("Florence", "");
		menu4.addItem("Sienna", "");
		menu4.addItem("Montelicino", "");
		menu4.addItem("Orvieto", "");

		var submenu4 = menu4.addMenu(menu4.items[0]);
		var submenu5 = menu4.addMenu(menu4.items[1]);

		submenu4.addItem("Hostile", "");
		submenu4.addItem("Duomo", "");
		submenu4.addItem("Pitti Palace", "");
		submenu4.addItem("Ponte Vecchio", "");

		submenu5.addItem("Il Campo", "");
		submenu5.addItem("Roman Center", "");
		submenu5.addItem("Duomo", "");
		//==================================================================================================

		//==================================================================================================
		var menu5 = ms.addMenu(document.getElementById("support"));
		menu5.addItem("FAQ System", "/pages/101.htm");
		menu5.addItem("Contact Support", "/pages/contact-us-93.htm");

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

  //==================================================================================================
		var menu6 = ms.addMenu(document.getElementById("contact"));
		menu6.addItem("Contact Details", "/pages/contact-us-93.htm");
		menu6.addItem("Careers @ Pure Energy", "/pages/careers---pure-energy-163.htm");

  //==================================================================================================
		var menu7 = ms.addMenu(document.getElementById("legal"));
		menu7.addItem("Terms and Conditions", "/pages/terms-and-conditions-149.htm");

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