
			var objMenu;
			function init()
			{
				objMenu = new navMenu;
				
// ============================================================================================
// Create the menu items.
// ============================================================================================
				objMenu.addnew("home","default.htm", "200px");
				var menuitem1 = objMenu.addnew("therapies","", "200px");
				menuitem1.addnew("aromachology (fragrance creation)", "aromachology.htm");
				//menuitem1.addnew("aromatherapy", "aromatherapy.htm");
				menuitem1.addnew("aromatherapy massage", "aromatherapymassage.htm");
				menuitem1.addnew("aromatherapy facial", "aromatherapyfacial.htm");
				menuitem1.addnew("aromatherapy prescription", "aromatherapyprescription.htm");
				menuitem1.addnew("emotional freedom techniques", "emotionalfreedom.htm");
				menuitem1.addnew("eye treatments", "eyetreatments.htm");
				menuitem1.addnew("hot stone therapy", "hotstones.htm");
				menuitem1.addnew("indian head massage", "indianhead.htm");
				menuitem1.addnew("hand treatments", "handtreatments.htm");
				menuitem1.addnew("foot treatments", "foottreatments.htm");
				menuitem1.addnew("pampering packages", "pamperingpackages.htm");
				menuitem1.addnew("raindrop technique", "raindrop.htm");					
				menuitem1.addnew("reiki", "reiki.htm");
				menuitem1.addnew("thai-style spa treatment", "thaistyle.htm");
				menuitem1.addnew("therapeutic massage", "therapeuticmassage.htm");
				menuitem1.addnew("thermo auricular therapy", "thermoauricular.htm");
				menuitem1.addnew("waxing", "waxing.htm");
				var menuitem2 = objMenu.addnew("corporate","", "130px");
				menuitem2.addnew("corporate gifts", "corporategifts.htm")
				menuitem2.addnew("corporate events", "corporateevents.htm");
				var menuitem3 = objMenu.addnew("bridal","", "170px");
				menuitem3.addnew("bridal fragrance","bridal1.htm#bridalfragrance");
				menuitem3.addnew("bridal group consulation","bridal3.htm#bridalgroupconsultation");
				menuitem3.addnew("scent your wedding","bridal3.htm#scentyourwedding");
				menuitem3.addnew("surprise the bride","bridal3.htm#surprisethebride");				
				menuitem3.addnew("bridal gifts","bridal2.htm#bridalgifts");
				menuitem3.addnew("exclusive wedding favours","bridal2.htm#exclusiveweddingfavours");
				menuitem3.addnew("other ideas","bridal4.htm");
				var menuitem4 = objMenu.addnew("gifts","", "155px");
				menuitem4.addnew("gift vouchers","giftvouchers.htm");
				menuitem4.addnew("corporate gifts","corporategifts.htm");
				menuitem4.addnew("bridal gifts","bridal2.htm#bridalgifts");
				menuitem4.addnew("scents to please","scentstoplease.htm");
				menuitem4.addnew("aromatherapy accessories","aromatherapyaccessories.htm");
				menuitem4.addnew("ord river","ordriver.htm");
				menuitem4.addnew("PA Exchange Fragrance","paxfragrance.htm");
				menuitem4.addnew("fragrance accessories","fragranceaccessories.htm");
				var menuitem5 = objMenu.addnew("training","", "170px");
				menuitem5.addnew("mental health first aid","trainingsmhfa.htm");				
				menuitem5.addnew("introduction to aromatherapy","trainingaromatherapy.htm");
				menuitem5.addnew("introduction to perfumery","trainingperfumery.htm");
				menuitem5.addnew("thermo auricular therapy","trainingthermoauricular.htm");
				//menuitem5.addnew("create your own perfume","trainingCreateYourOwnPerfume.htm");
				//objMenu.addnew("","");
				var menuitem6 = objMenu.addnew("offers","offers.htm", "170px");
				var menuitem7 = objMenu.addnew("tariff","tariff.htm", "170px");
				var menuitem8 = objMenu.addnew("about","about.htm", "170px");
				
// ============================================================================================
// Build the menu.
// ============================================================================================
				// set the widths: menu, submenu, spacing.
				objMenu.setWidths(100, 120, 2, true);
				// set the fonts: face, menu, submenu, menu, menu hover, sub menu, sub menu hover.
				objMenu.setFonts("tahoma", 12, 11, "#884298", "#F56800", "#999999", "#884298");
				// set backgrounds: menu, menu hover, sub menu, sub menu hover.
				objMenu.setBackgrounds("#FFFFFF", "#FFFFFF", "#FFFFFF", "#FFF6FF")
				// set the borders: width, menu, menu hover, sub menu, sub menu hover.
				objMenu.setBorders(1, "#ffffff", "#ffffff", "#D9CDDB", "#D9CDDB")
				// Create the menu (element to stuff the menu in).
				objMenu.create(menucontainer);
				
			}
			function togglemenu()
			{
				objMenu.setWidths(80, 80, 2, !objMenu.horizontal);
				objMenu.create(menucontainer);
			}
