
// ==================================================================================
	
	// File has been edited by design department for easy usage throughout biznet.
	// Any Questions ask Janny.
	
// ==================================================================================


if (mtDropDown.isSupported()) {

		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);


// ==================================================================================
	
	// When adding to this menu please keep inline with the id numbering convention.
	// Take a copy of your own before editing.
	// DO NOT change nothing from this file.	
	
// ==================================================================================


// Home Structure

		// Home
		var menu0 = ms.addMenu(document.getElementById("menu0"));
		menu0.addItem("&raquo; Home", "/index.cfm");
			 
// Company Profile Structure

		// Company Profile
		var menu1 = ms.addMenu(document.getElementById("menu1"));
			menu1.addItem("&raquo; Company Profile", "/companyprofile.cfm");
		
// Products / Services Structure

		// Products / Services
		var menu2 = ms.addMenu(document.getElementById("menu2"));
			menu2.addItem("&raquo; Tyres", "/products_tyres.cfm");
			menu2.addItem("&raquo; Batteries", "/products_batteries.cfm");
			menu2.addItem("&raquo; Exhausts", "/products_exhausts.cfm");
			menu2.addItem("&raquo; Alloy Wheels", "/products_alloywheels.cfm");
			menu2.addItem("&raquo; Services", "/services.cfm");
			menu2.addItem("&raquo; Specialist", "/products_specialist.cfm"); 
			

// Depot Locations Structure

		// Depot Locations
		var menu3 = ms.addMenu(document.getElementById("menu3"));
			menu3.addItem("&raquo; Depot Locations", "/depotlocations.cfm");
			
// Notice Board Structure

		// Notice Board
		var menu4 = ms.addMenu(document.getElementById("menu4"));
			menu4.addItem("&raquo; Notice Board", "/news/index.cfm");
			
// Links Structure

		// Links
		var menu5 = ms.addMenu(document.getElementById("menu5"));
			menu5.addItem("&raquo; Links", "/links.cfm");

// Contact Us Structure

		// Contact Us
		var menu6 = ms.addMenu(document.getElementById("menu6"));
			menu6.addItem("&raquo; Contact Us", "/contact/index.cfm");

// Wholesale Structure

		// Wholesale
		var menu7 = ms.addMenu(document.getElementById("menu7"));
			menu7.addItem("&raquo; Wholesale", "/wholesalers/index.cfm");
		
// ==================================================================================	

	// When adding to this menu please keep inline with the id numbering convention.
	// Take a copy of your own before editing.
	// DO NOT change nothing from this file.			 

// ==================================================================================

		mtDropDown.renderAll();
		}

// ==================================================================================

