	// 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, -31, -56, TransMenu.reference.topLeft);

		//==================================================================================================
		// 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("menu").getElementsByTagName("a")[0]);
		menu1.addItem("Absinth", "/products");
		menu1.addItem("Brandy", "");
		menu1.addItem("Other", "");
        //menu1.addItem("Special offers", "");

		var submenu0 = menu1.addMenu(menu1.items[0]);
		submenu0.addItem("Absinth King of Spirits GOLD", "/products/absinth-king-of-spirits-gold");
		submenu0.addItem("Absinth King of Spirits", "/products/absinth-king-of-spirits");
		submenu0.addItem("Absinth Beetle", "/products/absinth-beetle");
		submenu0.addItem("Absinth 35", "/products/absinth-35");
		submenu0.addItem("RED Absinth", "/products/red-absinth");
		submenu0.addItem("Staroplzenecky Absinth", "/products/absinth-staroplzenecky");
		submenu0.addItem("Staroplzenecky in Ceramic Bottle", "/products/absinth-staroplzenecky-1litre");

		var submenu1 = menu1.addMenu(menu1.items[1]);
		submenu1.addItem("Apple-brandy", "/products/apple-brandy");
		submenu1.addItem("Plum-brandy", "/products/plum-brandy");
		submenu1.addItem("Pear-brandy", "/products/pear-brandy");
		submenu1.addItem("Apricot-brandy", "/products/apricot-brandy");

		var submenu2 = menu1.addMenu(menu1.items[2]);
		submenu2.addItem("Worm Spirit", "/products/worm-spirit");
		submenu2.addItem("Cannabis Vodka", "/products/cannabis-vodka");
		submenu2.addItem("Rum Stark", "/products/rum-stark");
		submenu2.addItem("Absinth Spoons", "/products/absinth-spoons");
		submenu2.addItem("Make Your Own Absinth", "/products/make-your-own-absinth");
		submenu2.addItem("Gift set of miniatures", "/products/gift-set-of-miniatures");
		submenu2.addItem("USB flash disk 1GB", "/products/flash");
		submenu2.addItem("Absinth fontan", "/products/fontan");
        
        //var submenu3 = menu1.addMenu(menu1.items[3]);
        //submenu3.addItem("Christmas sale", "/products/christmas");
        
/*
		var submenu00 = submenu0.addMenu(submenu0.items[0]);
		submenu00.addItem("foo");
		submenu00.addItem("bar");
		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("lombardia"));
		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("veneto"));
		menu3.addItem("Verona");
		menu3.addItem("Venezia");

		var submenu2 = menu3.addMenu(menu3.items[0]);
		var submenu3 = menu3.addMenu(menu3.items[1]);

		submenu2.addItem("Hostel", "");
		submenu2.addItem("Piazza Erba", "");
		submenu2.addItem("Castle", "");
		submenu2.addItem("Arena", "");

		submenu3.addItem("Piazza San Marco", "");
		submenu3.addItem("Lagoon", "");
		submenu3.addItem("Hotel", "");
		submenu3.addItem("Chichetti", "");
		submenu3.addItem("Doge's Palace", "");
		//==================================================================================================

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("toscana"));
		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("lazio"));
		menu5.addItem("Roma", "");

		var submenu6 = menu5.addMenu(menu5.items[0]);
		submenu6.addItem("Appian Way", "");
		submenu6.addItem("Trastevere", "");
		submenu6.addItem("Pantheon", "");
		submenu6.addItem("Palantine Hill", "");
		submenu6.addItem("Colloseum", "");
		submenu6.addItem("Forum", "");
		submenu6.addItem("Trevi Fountain", "");
		submenu6.addItem("St. Peter's", "");
		submenu6.addItem("Vatican Museum", "");
*/
		//==================================================================================================

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