	if (DropDown.isSupported()) {

		var ms = new DropDownSet(DropDown.direction.down, 0, 0, DropDown.reference.bottomLeft);

		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("- Company Profile", "company.html"); 
		menu1.addItem("- Vision & Mission", "visionmision.html");
		menu1.addItem("- Partnership", "partnership.html");
		menu1.addItem("- Clients", "clients.html");
		menu1.addItem("- News", "news.html");
		menu1.addItem("- Career", "career.html");
		
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("- Internet Application", "#");
		menu2.addItem("- Intranet Application", "#");
		
		var subMenu2 = menu2.addMenu(menu2.items[0]);
		subMenu2.addItem("JakartaProperty.net", "jakartaproperty.html");
		subMenu2.addItem("Online Community Application", "oca.html");
		subMenu2.addItem("Catalogue Website", "cw.html");
		
		var subMenu2 = menu2.addMenu(menu2.items[1]);
		subMenu2.addItem("Project Management System", "pms.html");
		subMenu2.addItem("Monthly Progress Reporting System", "mpr.html");
		subMenu2.addItem("Market Share Reporting System", "ms.html");
		

		DropDown.renderAll();
	}
