if (TransMenu.isSupported()) {
	
		
	TransMenu.spacerGif = "objects/img/spacer.gif";            	// path to a transparent spacer gif
	TransMenu.dingbatOn = "objects/img/submenu-on.gif";   	// path to the active sub menu dingbat
	TransMenu.dingbatOff = "objects/img/submenu-off.gif"; 	// path to the inactive sub menu dingbat
	TransMenu.dingbatSize = 14;                            			// size of the dingbat (square shape assumed)
	TransMenu.menuPadding = 5;                             			// padding between menu border and items grid
	TransMenu.itemPadding = 3;                             			// additional padding around each item
	TransMenu.shadowSize = 1;              // size of shadow under menu
	TransMenu.shadowOffset = 1;                            			// distance shadow should be offset from leading edge
	TransMenu.shadowColor = "#6B696C";               // color of shadow (transparency is set in CSS)
	TransMenu.shadowPng = "objects/img/grey-40.png";      	// a PNG graphic to serve as the shadow for mac IE5
	TransMenu.backgroundColor = "#DAB105";             // color of the background (transparency set in CSS)
	TransMenu.backgroundPng = "objects/img/white-90.png"; 	// a PNG graphic to server as the background for mac IE5
	TransMenu.hideDelay = 1000;                            			// number of milliseconds to wait before hiding a menu
	TransMenu.slideTime = 400;                             			// number of milliseconds it takes to open and close a menu
	var mainmenu = new TransMenuSet(TransMenu.direction.down, -2, 0, TransMenu.reference.bottomLeft);
	
	var mainmenu1 = mainmenu.addMenu(document.getElementById("mainmenu1"));
		mainmenu1.addItem("Soya & Linseed", "our_products/index.html");
		mainmenu1.addItem("Wholegrain & Cranberry", "our_products/index.html");
		
	var mainmenu2 = mainmenu.addMenu(document.getElementById("mainmenu2"));
		mainmenu2.addItem("Women's Health", "your_health/index.html#womenshealth");
			var mainmenu2_2 = mainmenu2.addMenu(mainmenu2.items[0]);
			mainmenu2_2.addItem("What is the Menopause", "your_health/whatisthemenopause.html");
			mainmenu2_2.addItem("Symptoms of the Menopause", "your_health/symptomsofthemenopause.html");			
			mainmenu2_2.addItem("Plant Oestrogens", "your_health/plant_oestrogens.html");
			mainmenu2_2.addItem("Lifestyle Tips", "your_health/lifestyle_tips.html");
			//mainmenu2_2.addItem("FAQs", "your_health/womenshealth_faqs.html");
		mainmenu2.addItem("Low GI", "your_health/index.html#lowgi");
			var mainmenu2_0 = mainmenu2.addMenu(mainmenu2.items[1]);
			mainmenu2_0.addItem("What is Low GI?", "your_health/whatislowgi.html");
			mainmenu2_0.addItem("GI Eating", "your_health/gi_eating.html");
			//mainmenu2_0.addItem("Low GI Food Options", "your_health/food_options.html");
			mainmenu2_0.addItem("Antony Worrall Thompson's Story", "your_health/awt_story.html");
			//mainmenu2_0.addItem("FAQs", "your_health/lowgi_faqs.html");
		mainmenu2.addItem("Heart Health", "your_health/index.html#hearthealth");
			var mainmenu2_1 = mainmenu2.addMenu(mainmenu2.items[2]);
			mainmenu2_1.addItem("The Role of Wholegrain", "your_health/hearthealth_wholegrainrole.html");
			mainmenu2_1.addItem("Heart Health Tips", "your_health/hearthealth_tips.html");
			//mainmenu2_1.addItem("FAQs", "your_health/hearthealth_faqs.html");
	
		mainmenu2.addItem("Health and BMI Check", "your_health/index.html#bmi");
		mainmenu2.addItem("Ask our Nutritionist", "hcp/askanexpert.asp");
	
	var mainmenu3 = mainmenu.addMenu(document.getElementById("mainmenu3"));
		//mainmenu3.addItem("Festive Wholegrain & Cranberry Recipes", "our_recipes/christmas_recipes.html");
		mainmenu3.addItem("Soya & Linseed Recipes", "our_recipes/sandl.html");
		mainmenu3.addItem("Wholegrain & Cranberry Recipes", "our_recipes/wandc.html");
		mainmenu3.addItem("Low GI Recipes by Antony Worrall Thompson", "our_recipes/lowgi.html");
	
	var mainmenu4 = mainmenu.addMenu(document.getElementById("mainmenu4"));
		mainmenu4.addItem("The Burgen Story", "our_story/index.html");
		mainmenu4.addItem("Our Advertising", "our_story/advertising.html");
		mainmenu4.addItem("Our Features", "our_story/advertorials.html");
		mainmenu4.addItem("Going Low GI", "our_story/celebritycampaign.html");
		
	var mainmenu5 = mainmenu.addMenu(document.getElementById("mainmenu5"));
		mainmenu5.addItem("Our Articles", "hcp/index.html");
		mainmenu5.addItem("Ask Our Nutritionist", "hcp/askanexpert.asp");
	
	var mainmenu6 = mainmenu.addMenu(document.getElementById("mainmenu6"));
		mainmenu6.addItem("Recent Press Releases", "press/index.html");
		mainmenu6.addItem("Contact Press Office", "press/contact.html");
	
	var mainmenu7 = mainmenu.addMenu(document.getElementById("mainmenu7"));
	        mainmenu7.addItem("The Burgen Careline", "contact/index.asp");
	        mainmenu7.addItem("Your Opinion", "opinion.asp");
    
	TransMenu.renderAll();
	TransMenu.initialize();
		
}