	// 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, -26, 6, 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("dd1"));
		menu1.addItem("Your Team", "/your_team.htm");
		menu1.addItem("Your Business", "/your_business.htm");
		
		
		var menu2 = ms.addMenu(document.getElementById("dd2"));
		menu2.addItem("Our Services", "/our_services.htm"); 
		menu2.addItem("Audit and Assurance", "/audit_assurance.htm"); 
		menu2.addItem("Preparation of Accounts and Bookkeeping", "/bookkeeping-preparation-accounts.htm");
		menu2.addItem("Tax Advice and Planning", "/tax-advice-services-planning.htm");
		menu2.addItem("Payroll Services", "/payroll-leicestershire.htm");
		menu2.addItem("Business Advice", "/business-advice-leicestershire.htm");
		menu2.addItem("Accounts and Business System Review", "/accounts_business_review.htm");
		menu2.addItem("IT Consulting", "/it_consulting.htm");
		menu2.addItem("Company Formations and Secretarial", "/comp_form_sec_services.htm");
		menu2.addItem("Strategic Planning", "/strat_planning.htm");
		menu2.addItem("Business Finance", "/business_finance.htm");
		menu2.addItem("Wealth Planning", "/wealth_planning.htm");
		menu2.addItem("Paying Tax", "/paying-tax.htm");
		

		var submenu2 = menu2.addMenu(menu2.items[12]);
		submenu2.addItem("Business Payment Support Service", "/business-payment-support-service.htm");
		submenu2.addItem("Capital Gains Tax", "/capital-gains-tax.htm");
		submenu2.addItem("Corporation Tax", "/corporation-tax.htm");
		submenu2.addItem("Income Tax", "/income-tax.htm");
		submenu2.addItem("Inheritance Tax", "/inheritance-tax.htm");
		submenu2.addItem("National Insurance", "/national-insurance.htm");
		submenu2.addItem("PAYE", "/paye.htm");
		submenu2.addItem("VAT", "/vat.htm");
		
		
		var menu3 = ms.addMenu(document.getElementById("dd4"));
		menu3.addItem("Proactivity", "/proactivity.htm");
		menu3.addItem("A4G Menu", "/year_end_menu.htm");
		menu3.addItem("Benchmarking", "/benchmarking.htm");
		menu3.addItem("Wealth Management", "/wealth_management.htm");
		menu3.addItem("Specialist Sectors", "/specialist.htm");
		
		
		var menu3 = ms.addMenu(document.getElementById("dd5"));
		menu3.addItem("Resource Centre", "/resource-centre/resource-centre.php"); 
		menu3.addItem("Newswire Registration", "/newswire_register.htm");	
		menu3.addItem("Useful Links", "/links.htm");	
		
		var submenu3 = menu3.addMenu(menu3.items[0]);
		submenu3.addItem("Tax Calculators", "/resource-centre/tax-calculators.php");
		submenu3.addItem("Business Fact Sheets", "/resource-centre/business-factsheets.php");
		submenu3.addItem("Tax Deductable Expenses", "/tax_deductable_exp.htm");	
		submenu3.addItem("New Business Kit", "/pdf/business_kit.pdf");	
		submenu3.addItem("Mortgage Checker", "/mortgage_checker.htm");	
		submenu3.addItem("Business Diagnostic Tool", "/diagnostic_tool.htm");
		submenu3.addItem("Tax Tables", "/resource-centre/tax-tables.php");

		var menu3 = ms.addMenu(document.getElementById("dd6"));
		menu3.addItem("Tax planning in recessionary times", "/recessionary-tax-planning.htm"); 
		menu3.addItem("Tough Times Business Checklist", "/pdf/tough_times.pdf"); 
		menu3.addItem("Beating the Recession and the Credit Crunch", "/pdf/beating_the_recession.pdf"); 
		menu3.addItem("DIY Risk Assessment for your Business", "/pdf/SBSK_opacity.pdf"); 
		menu3.addItem("Cash Flow Improvement Assessment", "/cash_flow_improvement_assessment_tool.xls"); 
		menu3.addItem("Useful Weblinks", "/recessionary-useful-links.htm"); 

		var menu3 = ms.addMenu(document.getElementById("dd7"));
		menu3.addItem("Testimonials", "/our_clients.htm"); 
		menu3.addItem("Client Survey Results", "/our_clients_survey.htm"); 
		menu3.addItem("Referral Rewards", "/client_refer_menu.htm");	

		//==================================================================================================
		//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", "");
		//==================================================================================================

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