	if (mtDropDown.isSupported()) {
		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 7, mtDropDown.reference.bottomLeft);
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("Publishing","publishing.html");
		menu1.addItem("Creative Design","creative_design.html");
				
		/*var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Publishing","javascrit:;");
		menu2.addItem("Creative Design","javascrit:;");
      

		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("Website Design","javascrit:;");
		menu3.addItem("Web Programmin / Web Application Development","javascrit:;");
		menu3.addItem("Logo Designing","javascrit:;");
		menu3.addItem("Portfolio","javascrit:;");
		menu3.addItem("Get a quote","javascrit:;");*/
		
				
		//==================================================================================================
		// add a sub-menu
		//==================================================================================================
		// to add a sub menu to an existing menu object, call it's addMenu method and pass it the item from
		// the parent menu which should act as it's actuator. To add a submenu to the fourth item of a menu
		// called "theMenu", you would do theMenu.addMenu(theMenu.items[3])
		//==================================================================================================
	
			
	
		//==================================================================================================
		// 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.
		//==================================================================================================
		mtDropDown.renderAll();
	}
