	// add your dropdown menus, sub menus here //
	if (mtDropDown.isSupported()) {
		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, -3, mtDropDown.reference.bottomLeft);
		// menu 1
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		// menu 2
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		// menu 3
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("Government and related services", "contactsgov.asp");
		menu3.addItem("Provincial CDW Coordinators", "contactsprov.asp");
		menu3.addItem("Thusong Service Centres", "contactsthusong.asp");

		mtDropDown.renderAll();
	}