	// 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 (lehrerDropDown.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 lehrerDropDownSet(lehrerDropDown.direction.down, 0, 0, lehrerDropDown.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("Profile", "medicines_drugs_manufacturing/export_import_india.htm");
		menu1.addItem("Research & Development", "medicines_drugs_manufacturing/recearch_drugs_medicines.htm");
		menu1.addItem("News", "News.aspx");
		menu1.addItem("Achievements", "medicines_drugs_manufacturing/contract_manufacturing_medicines.htm");



		//==================================================================================================		
	
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Domestic", "exporter_importer_india/exporter_manufacturer_india.htm");
		menu2.addItem("International", "exporter_importer_india/importer_exporter_india.htm");
	
		
		//==================================================================================================		
	
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("Analgesic", "medicines_drugs/analgesic_exporter_manufacturer.htm");
		menu3.addItem("Analgesic Anti-Inflammatory", "medicines_drugs/analgesic_antiinflammatory__exporter_manufacturer.htm");
		menu3.addItem("Antispasmodic", "medicines_drugs/antispasmodic_exporter_manufacturer.htm");
		menu3.addItem("Antibacterial", "medicines_drugs/antibacterial_exporter_manufacturer.htm");
		menu3.addItem("Antimalarial", "medicines_drugs/antimalarial_exporter_manufacturer.htm");
		menu3.addItem("Lactic Acid Bacillus", "medicines_drugs/lactic_acid_bacillus_exporter_manufacturer.htm");
		menu3.addItem("Antiseptic Oral Gel", "medicines_drugs/antiseptic_oral_gel_exporter_manufacturer.htm");
		menu3.addItem("Oossimax Tablet", "medicines_drugs/ossimax_tablet_exporter_manufacturer.htm");
		menu3.addItem("Skin Care Soap", "medicines_drugs/skin_care_soap_exporter_manufacturer.htm");
		menu3.addItem("Pain Relieving Oil", "medicines_drugs/pain_relieving_oil_exporter_manufacturer.htm");
		menu3.addItem("Nutritional Supplement", "medicines_drugs/nutritional_supplement_exporter_manufacturer.htm");
		menu3.addItem("Cough Suspension", "medicines_drugs/cough_suspension_exporter_manufacturer.htm");
		menu3.addItem("Analgesic Decongestant", "medicines_drugs/analgesic_decongestant_exporter_manufacturer.htm");
		menu3.addItem("Calcium supplement", "medicines_drugs/calcium_supplement.htm");
		//==================================================================================================		
	
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Sales", "medicine_drugs_marketing/drugs_marketing_india.htm");
		menu4.addItem("Ethical & Generic", "medicine_drugs_marketing/medicine_drugs_marketing.htm");
		menu4.addItem("Contract Manufacturing", "medicine_drugs_marketing/contract_manufacture_medicine.htm");
		menu4.addItem("Exports", "medicine_drugs_marketing/export_medicine_drugs.htm");
//==================================================================================================		
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("Cerebral Malaria", "malaria_drugs_medicines/cerebral_malaria.htm");
		menu5.addItem("Malaria in Children", "malaria_drugs_medicines/malaria_in_children.htm");
		menu5.addItem("Malaria in Pregnancy", "malaria_drugs_medicines/malaria_in_pregnancy.htm");
		menu5.addItem("Jaundice in Malaria", "malaria_drugs_medicines/jaundice_in_malaria.htm");
		menu5.addItem("Acute Renal Failure", "malaria_drugs_medicines/acute_renal_failure.htm");
		menu5.addItem("Malaria Updates", "http://www.mcwhealthcare.com/malaria.aspx");
	//==================================================================================================
//		var menu6 = ms.addMenu(document.getElementById("menu6"));
//		menu6.addItem("Open Jobs at MCW", "pharmaceutical_jobs/medicine_marketing_india.htm.");
//==================================================================================================		
		var menu7 = ms.addMenu(document.getElementById("menu7"));
		menu7.addItem("Feedback Form", "medicine_drugs_export/contact_drugs_export_india.htm");
		menu7.addItem("Trade Enquiry", "medicine_drugs_export/enquiry_medicine_export.htm");
		//==================================================================================================
		// 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.
		//==================================================================================================
		lehrerDropDown.renderAll();
	}

