	// 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, 1, 1, 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("corporate"));
		menu1.addItem("Công ty GENETIC", "/corporate/param.asp?catid=1&msgid=1"); 
		menu1.addItem("Ý nghĩa thương hiệu", "/corporate/param.asp?catid=1&msgid=2");
		menu1.addItem("Năng lực & Kinh nghiệm", "/corporate/param.asp?catid=1&msgid=4");
		menu1.addItem("Tầm nhìn chiến lược", "/corporate/param.asp?catid=1&msgid=5"); 
		menu1.addItem("Văn hóa GENETIC", "/corporate/param.asp?catid=1&msgid=6");
		menu1.addItem("Đối tác & Khách hàng", "/corporate/param.asp?catid=1&msgid=7");
		menu1.addItem("Phát triển mạng lưới", "/corporate/param.asp?catid=1&msgid=9");
		
		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("news"));
		menu2.addItem("Thông tin nội bộ", "/news/list.asp?catid=4");
		menu2.addItem("Phát triển nhân sự", "/news/list.asp?catid=5");
		menu2.addItem("Nghiên cứu - Phát triển", "/news/list.asp?catid=6");
		menu2.addItem("Thị trường công nghệ", "/news/list.asp?catid=7");
		menu2.addItem("Thông cáo báo chí", "/news/list.asp?catid=8");
		menu2.addItem("Thông tin khuyến mại", "/news/list.asp?catid=26");

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("solutions"));
		menu3.addItem("Ứng dụng ICT Doanh nghiệp", "#");
		menu3.addItem("Ứng dụng ICT Trường học", "#");
		menu3.addItem("Ứng dụng ICT Gia đình", "#");
		menu3.addItem("An ninh và Bảo mật mạng", "#");
		menu3.addItem("Tích hợp hệ thống", "#");

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("products"));
		menu4.addItem("Phần mềm GENETIC", "/products/software.asp?catid=9");
		menu4.addItem("Phần mềm bản quyền", "/products/software.asp?catid=10");
		menu4.addItem("Máy tính & Linh kiện", "#");
		menu4.addItem("Thiết bị Viễn thông", "#");
		menu4.addItem("Thiết bị điều khiển", "#");

		//==================================================================================================
		var menu5 = ms.addMenu(document.getElementById("services"));
		menu5.addItem("Dịch vụ khách hàng", "#");
		menu5.addItem("Mạng và Máy tính", "#");
		menu5.addItem("Phần mềm và Dữ liệu", "#");
		menu5.addItem("Tên miền Internet", "#");
		menu5.addItem("Hosting chuyên nghiệp", "#");
		menu5.addItem("Hệ thống MailServer", "#");
		menu5.addItem("Quảng cáo Internet", "#");
		
		//==================================================================================================
		var menu6 = ms.addMenu(document.getElementById("education"));
		menu6.addItem("Mục tiêu đào tạo", "#");
		menu6.addItem("Chương trình khóa học", "#");
		menu6.addItem("Hợp tác đào tạo", "#");
		menu6.addItem("Hệ thống chứng thực", "#");
		menu6.addItem("Hỏi & Đáp", "#");
		
		//==================================================================================================
		var menu7 = ms.addMenu(document.getElementById("supports"));
		menu7.addItem("Tư vấn khách hàng", "#");
		menu7.addItem("Trao đổi kinh nghiệm", "#");
		menu7.addItem("Giải đáp thắc mắc", "#");
		menu7.addItem("Hướng dẫn kỹ thuật", "#");
		menu7.addItem("Virus, Spyware, Adware", "#");
		menu7.addItem("Chia sẻ phần mềm", "#");
		menu7.addItem("Tài liệu kỹ thuật", "#");

		//==================================================================================================
		var menu8 = ms.addMenu(document.getElementById("contactus"));
		menu8.addItem("Địa chỉ liên hệ", "/contactus/param.asp?catid=45&msgid=20");
		menu8.addItem("Bản đồ đường đi", "/contactus/param.asp?catid=45&msgid=23");
		menu8.addItem("Hình thức thanh toán", "/contactus/param.asp?catid=45&msgid=21");
		menu8.addItem("Ý kiến khách hàng", "/contactus/param.asp?catid=45&msgid=22");

		//==================================================================================================
		// 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();
	}