	// 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.side, 0, 1, mtDropDown.reference.topRight);

		//==================================================================================================
		// 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("Scrip Enrollment Form","Documents/Enrollment Form.pdf");
//@@		menu1.addItem("Scrip Order Forms", "Documents/ScripSelectForm.pdf");
		//@@ menu1.addItem("Family and Friends Scrip Form", "Documents/FriendsFamilyForm.pdf ");
		//==================================================================================================

		//==================================================================================================
		// 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 menu5 = ms.addMenu(document.getElementById("menu5"));
   		//menu5.addItem("Training","hr_training.htm");
		//menu5.addItem("Varification Checks", "hr_vcheks.htm");
		//menu5.addItem("Pay Roll Management", "hr_prm.htm");
		//menu5.addItem("Ramp-up Recruitment", "hr_rur.htm");
		
		
	/*	var menu6= ms.addMenu(document.getElementById("menu6"));
   		menu6.addItem("Banking","fs_banking.htm");
		menu6.addItem("Insurance", "fs_insurance.htm");
		menu6.addItem("Mutual Funds", "fs_mfunds.htm");
		menu6.addItem("Stock Market", "fs_stockmkt.htm");
		menu6.addItem("Accountancy", "fs_accountancy.htm");
		
		
		var menu7 = ms.addMenu(document.getElementById("menu7"));
   		menu7.addItem("Consumer Durable","ser_consdurable.htm");
		menu7.addItem("White goods", "ser_wgoods.htm");
		menu7.addItem("Retail", "ser_retail.htm");
		menu7.addItem("Admin / Operations", "ser_adminoperations.htm");
		menu7.addItem("Human Resources", "ser_humanresources.htm");
		
		
		
		var menu8 = ms.addMenu(document.getElementById("menu8"));
   		menu8.addItem("Sales & Marketing","telecom.htm");
		menu8.addItem("Operations / Administration", "telecom.htm");
		menu8.addItem("Support Staff", "telecom.htm");
		menu8.addItem("Engineers – Auto & Others ", "telecom.htm");
		menu8.addItem("Electrical Engineers ", "telecom.htm");
		menu8.addItem("Civil Engineers ", "telecom.htm");
		menu8.addItem("Mechanical Engineers ", "telecom.htm");
	
		
		var menu9 = ms.addMenu(document.getElementById("menu9"));
   		menu9.addItem("Clinical Research","ph_clinicalresearch.htm");
		menu9.addItem("Research & Development", "ph_clinicalresearch.htm");
		menu9.addItem("Formulation", "ph_clinicalresearch.htm");
		menu9.addItem("Analytical", "ph_clinicalresearch.htm");
		menu9.addItem("Support Staff", "ph_clinicalresearch.htm");
		menu9.addItem("Sales & marketing", "ph_clinicalresearch.htm");
		
		
		var menu10 = ms.addMenu(document.getElementById("menu10"));
   		menu10.addItem("Senior Management","itesbpo.htm");
		menu10.addItem("VP / AVPs / Operations Heads", "itesbpo.htm");
		menu10.addItem("PM / Manager Operations", "itesbpo.htm");
		menu10.addItem("Assistant Managers / Team leader", "itesbpo.htm");
		menu10.addItem("Customer Support Staff", "itesbpo.htm");
		menu10.addItem("Sales & marketing", "itesbpo.htm");
		
		
		
		//var menu11 = ms.addMenu(document.getElementById("menu11"));
   		//menu11.addItem("SAP","te_sap.htm");
		//menu11.addItem("Peoplesoft", "te_peoplesoft.htm");
		//menu11.addItem("BAAN", "te_baan.htm");
		//menu11.addItem("Oracle Apps", "te_oracle.htm");
		
		
		var menu12 = ms.addMenu(document.getElementById("menu12"));
   		menu12.addItem("Sun Technologies","software.htm");
		menu12.addItem("Microsoft Technologies", "software.htm");
		menu12.addItem("Operating Systems", "software.htm");
		menu12.addItem("CAD / CAM", "software.htm");
		menu12.addItem("Tools & Applications", "software.htm");
		
		
		var menu13 = ms.addMenu(document.getElementById("menu13"));
   		menu13.addItem("Networking","hardware.htm");
		menu13.addItem("Testing Tools", "hardware.htm");
		menu13.addItem("QA", "hardware.htm");
		
		
		//var menu14 = ms.addMenu(document.getElementById("menu14"));
   		//menu14.addItem("Networking","it_networking.htm");
		//menu14.addItem("Testing Tools", "it_testingtools.htm");
		//menu14.addItem("QA", "it_qa.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();
	}
