	if (mtDropDown.isSupported()) {

			var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.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("menu1"));
		menu1.addItem("The Printing Process", "printingprocess.html");
		menu1.addItem("FAQ", "faq.html");
		//menu1.addItem("Testimonials", "testimonials.html");
		menu1.addItem("Terms & Conditions", "terms.html");
		
		//var subMenu1 = menu1.addMenu(menu1.items[0]);
		//subMenu1.addItem("Printing Tips", "tips.html");    
 		//subMenu1.addItem("MS Publisher", "mspublisher.html");
  		//subMenu1.addItem("File Review", "filereview.html");
				
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Printing","printing.html");
		//menu2.addItem("Custom Jobs", "customjobs.html");
		menu2.addItem("Direct Mail", "directmail.html");
		menu2.addItem("Why Direct Mail?", "whydirectmail.html");

		//var menu3 = ms.addMenu(document.getElementById("menu3"));
        //	menu3.addItem("File Upload","fileupload.asp");

		
		//==================================================================================================
		// 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();
	}
