	// 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("liguria"));
		menu1.addItem("About ADG", "about.htm"); 
		menu1.addItem("The Advantage", "about.htm#ADVANTAGE"); // send no URL if nothing should happen onclick

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

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("lombardia"));
		menu2.addItem("Easy Care", "");
		menu2.addItem("Southwest Re", "southwestre.htm");
		menu2.addItem("Cal-Tex", "caltex.htm");
		menu2.addItem("Identity", "identity.htm");
		menu2.addItem("iLocate", "ilocate.htm");
		menu2.addItem("SafetyPulse", "safetypulse.htm");
		menu2.addItem("Credit Life & Accident Insurance", "");
		menu2.addItem("Pinnacle", "pinnacle.htm");
		menu2.addItem("SafeGuard", "");
		menu2.addItem("Old Republic", "");
		menu2.addItem("Protracking", "protrack.htm");
		menu2.addItem("Consumer Guard Theft", "consumer.htm");
		menu2.addItem("ADG Car Care Centers", "carcare.htm");

		var submenu1 = menu2.addMenu(menu2.items[0]);
		submenu1.addItem("Vehicle Service Contracts", "vsc.htm");
		submenu1.addItem("APCO", "apco.htm");
		submenu1.addItem("Trustmark", "trustmark.htm");
		submenu1.addItem("Warranty Advantage", "warranty.htm");
		submenu1.addItem("Driver Care", "driver.htm");
		submenu1.addItem("ETCH", "etch.htm");
		submenu1.addItem("Loyalty Tire Rewards", "loyalty.htm");
		submenu1.addItem("Trade Cycle Management", "tradecycle.htm");
		submenu1.addItem("Service Drive Sales", "servicedrive.htm");
		submenu1.addItem("Scheduled Maintenance Plan", "scheduled.htm");
		submenu1.addItem("Dent Repair", "dent.htm");
		submenu1.addItem("KeyCare", "keycare.htm");
		submenu1.addItem("Negative Equity", "nequity.htm");
		submenu1.addItem("Incentives", "incentives.htm");
		submenu1.addItem("Dealer Online", "dealeronline.htm");
		
		var submenu2 = menu2.addMenu(menu2.items[8]);
		submenu2.addItem("About SafeGuard", "safeguard.htm");
		submenu2.addItem("Safe-lease", "safelease.htm");
		submenu2.addItem("UVPP", "uvpp.htm");
		
		var submenu3 = menu2.addMenu(menu2.items[9]);
		submenu3.addItem("About Old Republic", "oldrepublic.htm");
		submenu3.addItem("Vehicle Service Contracts", "oldrepvsc.htm");
		submenu3.addItem("GAP", "oldrepgap.htm");
		
		var submenu4 = menu2.addMenu(menu2.items[6]);
		submenu4.addItem("CARDIF", "cardif.htm");
		
		var submenu11 = submenu1.addMenu(submenu1.items[2]);
    	submenu11.addItem("Jaguar Extra Mile", "jaguar.htm");
    	submenu11.addItem("Mazda Extended Protection Plan", "mazda.htm");
		submenu11.addItem("Volvo VIP", "volvo.htm");
		submenu11.addItem("Primus Care", "primus.htm");
		//==================================================================================================

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("veneto"));
		menu3.addItem("Training Overview", "training.htm");
		menu3.addItem("Training Schedule", "schedule.htm");
		menu3.addItem("Training Agendas", "agenda.htm");
		menu3.addItem("Registration", "registration.htm");

        var submenu5 = menu3.addMenu(menu3.items[2]);
		submenu5.addItem("Comprehensive F&I Class", "agenda1.htm");
		submenu5.addItem("Intermediate F&I Class", "agenda2.htm");
		submenu5.addItem("Advanced Product F&I Class", "agenda3.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();
	}
