	// 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 (mtDropDown.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 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("- APIs and Intermediates", "");
		menu1.addItem("- Formulations", "formulationsindia.htm");
		
		
		var subMenu1 = menu1.addMenu(menu1.items[1]);
		subMenu1.addItem("· India", "formulationsindia.htm");
		subMenu1.addItem("· USA", "formulationsusa.htm");
		subMenu1.addItem("· Europe", "formulationseurope.htm");
        subMenu1.addItem("· Japan", "formulationsjapan.htm");
        subMenu1.addItem("· AAMLA", "formulationsaamla.htm");
		subMenu1.addItem("· CIS", "formulationscis.htm");
		subMenu1.addItem("· Global TB", "formulationsglobaltb.htm");

		
		

		

		var menu2 = ms.addMenu(document.getElementById("menu2"));

		menu2.addItem("- Corporate Overview", "about_index.htm");
		menu2.addItem("- Vision & Values", "philosophy.htm");
		menu2.addItem("- Chairman's Message", "ceo.htm");
		menu2.addItem("- History & Milestones", "history.htm");
		menu2.addItem("- Awards & Accolades ", "generalawards.htm");
		menu2.addItem("- Board of Directors", "bod.htm");
		menu2.addItem("- Management Team", "people.htm");		
		menu2.addItem("- Corporate Social Responsibility", "socialinitiatives.htm");		
		menu2.addItem("- Business Segments", "businesssegment.htm");		
		menu2.addItem("- R&D", "rnd.htm");		
		menu2.addItem("- Manufacturing", "mannufacturing.htm");		
		menu2.addItem("- Partner With Us", "partnerus.htm");
				
		
		
		
		
		//==================================================================================================

		//==================================================================================================
		// 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])
		//==================================================================================================
		//var subMenu1 = menu2.addMenu(menu2.items[0]);
		//subMenu1.addItem("· Finished Products", "");
		//subMenu1.addItem("· API", "http:");
		//subMenu1.addItem("· Herbals", "");

      

		

		// menu : ABOUT LUPIN
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		
		
		
		menu3.addItem("- Formulations", "businesssegment.htm"); // send no URL if nothing should happen onclick
		menu3.addItem("- API", "apioverview.htm"); // send no URL if nothing should happen onclick
		menu3.addItem("- CRAMS", "cramsoverview.htm");
		menu3.addItem("- Partner With Us", "partnerus.htm");		
		menu3.addItem("- Contact Us", "contact.htm#formulation");		

		//menu3.addItem("- Partner With Us", "partnerus.htm");

		//==================================================================================================

		//==================================================================================================
		// 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])
		//==================================================================================================
		var subMenu1 = menu3.addMenu(menu3.items[0]);
		subMenu1.addItem("· India", "india.htm");
		subMenu1.addItem("· USA", "usa.htm");
		subMenu1.addItem("· Europe", "europe.htm");
        subMenu1.addItem("· Japan", "japan.htm");
        subMenu1.addItem("· ROW", "row.htm");
		subMenu1.addItem("· Global TB", "globaltb.htm");
		subMenu1.addItem("· Products", "products.htm");


		
		var subMenu1 = menu3.addMenu(menu3.items[1]);
        subMenu1.addItem("· Overview", "apioverview.htm");
		subMenu1.addItem("· Products", "apiproducts.htm");
		subMenu1.addItem("· Contact Us", "contact.htm#api");

       	var subMenu1 = menu3.addMenu(menu3.items[2]);
		subMenu1.addItem("· Overview", "cramsoverview.htm");
		subMenu1.addItem("· Contact Us", "contact.htm#crams");
 


		// menu
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("- Overview", "rnd.htm");
		menu4.addItem("- Generics Research", "focus.htm");
		menu4.addItem("- Advanced Drug Delivery Systems", "adds.htm");
		menu4.addItem("- Lupin BioResearch Centre", "lbrc.htm");
		menu4.addItem("- Intellectual Property Management", "intellectual.htm");
		menu4.addItem("- Novel Drug Discovery & Development ", "chemicalresearch.htm");
		menu4.addItem("- Biotechnology Research", "biotechnology.htm");
		menu4.addItem("- Contact Us", "contact.htm#rnd");

		//var subMenu1 = menu4.addMenu(menu4.items[1]);
		//subMenu1.addItem("· ANDAs", "ands.htm");

		//var subMenu1 = menu4.addMenu(menu4.items[3]);
		//subMenu1.addItem("· Patent Fillings", "patents.htm");
				
		//var subMenu1 = menu4.addMenu(menu4.items[4]);
		//subMenu1.addItem("· NCE Pipeline", "pipeline.htm");
				
				
				
		// menu : 5
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("- Financials", "investors.htm");
		menu5.addItem("- Stock", "stock.htm");
		menu5.addItem("- Events", "events.htm");
		menu5.addItem("- Analyst Speak", "analysts.htm");
		menu5.addItem("- Contact Us", "contact.htm#investor");
		menu5.addItem("- Archives", "archivesmain.htm");

		var subMenu1 = menu5.addMenu(menu5.items[0]);
		subMenu1.addItem("· Annual Report", "annualreport.htm");
		subMenu1.addItem("· Balance Sheet", "balancesheet.htm");
		subMenu1.addItem("· P & L ", "p&l.htm");
		subMenu1.addItem("· Cash Flow", "cashflow.htm");
		subMenu1.addItem("· Five Years Financial Summary", "5years.htm");
        subMenu1.addItem("· Financial Results", "results.htm");
        subMenu1.addItem("· Investor Presentations", "invepresentations.htm");
        subMenu1.addItem("· Subsidiaries", "subsidiaries.htm");

				var subMenu1 = menu5.addMenu(menu5.items[1]);
		subMenu1.addItem("· Stock Chart", "stockchart.htm");
        subMenu1.addItem("· Listing of Securities", "stockchart.htm#listing");
		subMenu1.addItem("· Share Capital", "stockchart.htm#sharecapital");
		subMenu1.addItem("· Dividend History", "stockchart.htm#dividend");
		subMenu1.addItem("· Share Holding Pattern", "sharepattern.htm");
        subMenu1.addItem("· Other Statutory Information", "statutory.htm");
        subMenu1.addItem("· Tips for Shareowners", "tips.htm");
        subMenu1.addItem("· Download Forms", "downloadforms.htm");
        subMenu1.addItem("· Code of conduct", "codeofconduct.htm");

		
						var subMenu1 = menu5.addMenu(menu5.items[2]);
		subMenu1.addItem("· AGM", "events.htm");
		subMenu1.addItem("· CPhI 2009", "cphievents.htm");
		subMenu1.addItem("· Investor Meets / Earnings Call", "earningcall.htm");

		
		// menu : 6
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("- Life at Lupin", "careers.htm");
		menu6.addItem("- Vision & Values ", "philosophy.htm");
        menu6.addItem("- Learning & Development", "learning.htm");
		menu6.addItem("- Lupin on Campus", "campus.htm");
		//menu6.addItem("- Contact Us", "contact.htm#hr");
		menu6.addItem("- Jobs @ Lupin ", "jobsatlupin.php");
		menu6.addItem("- Code of Conduct ", "codeofconduct.htm");
		
		
		
		
		
				// menu : 8
		var menu8 = ms.addMenu(document.getElementById("menu8"));
		menu8.addItem("- Press Releases", "newsroom_index.htm");
		menu8.addItem("- Financial Results", "results.htm");
		menu8.addItem("- Annual Reports", "annualreport.htm");
		menu8.addItem("- Corporate Overview", "about_index.htm");
        menu8.addItem("- Investor Presentations", "invepresentations.htm");
        menu8.addItem("- History & Milestones", "history.htm");
		menu8.addItem("- Management Team", "people.htm");
		menu8.addItem("- Image Gallery", "gallery.htm");
		menu8.addItem("- Contact Us", "contact.htm#investor");
		menu8.addItem("- Archives", "archivesmain.htm");
		
		


		// menu : 9
		var menu9 = ms.addMenu(document.getElementById("menu9"));
		menu9.addItem("- Overview", "mannufacturing.htm");
		menu9.addItem("- Quality", "global.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.
		//==================================================================================================
		mtDropDown.renderAll();
	}
