// JavaScript Document 

	if (mtDropDown.isSupported()) {

		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

		//menu :1
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("- Introduce",  "/?action-model-name-aboutus-itemid-1"); // send no URL if nothing should happen onclick
		menu1.addItem("- Culture",  "/?action-model-name-aboutus-itemid-3"); // send no URL if nothing should happen onclick
		menu1.addItem("- Bearing",  "/?action-model-name-aboutus-itemid-4");
		menu1.addItem("- Organization ",  "/?action-model-name-aboutus-itemid-6");
		menu1.addItem("- Partner",  "/?action-model-name-aboutus-itemid-7");
		menu1.addItem("- Attestation",  "/?action-model-name-aboutus-itemid-5");

	
        //menu :2
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("- Enterprise News",   "/?action-model-name-aboutus-category-1"); 
		menu2.addItem("- Industry Information",   "/?action-model-name-aboutus-category-4"); 
		menu2.addItem("- Public News",   "/?action-model-name-aboutus-category-3");
		// send no URL if nothing should happen onclick
	
		// menu : 3
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("- Coating projects",         "/products/?action-category-catid-5");
		menu3.addItem("- Blast equipment and room",     "/products/?action-category-catid-1");
		menu3.addItem("- Abrator& pretreatment line",  "/products/?action-category-catid-2");
	    menu3.addItem("- Sprayer& coating line",      "/products/?action-category-catid-3");
		menu3.addItem("- supporting equipment",         "/products/?action-category-catid-4");
		
		// menu : 4
		// menu : 5
		// menu : 6
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("- Job", "/?action-model-name-contactus-itemid-2");	
	
 
		mtDropDown.renderAll();
	}




