
		/* =================================================================================================
		/* http://www.cgsincindia.com
		/* ============================================================================================== */






	
	// 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.right, 134, 0, mtDropDown.reference.topright);
		
		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		//The Organisation
		var menu1 = ms.addMenu(document.getElementById("menu1"));

		menu1.addItem("- About Organisation", "aboutorganisation.htm"); 
		menu1.addItem("- About Group", "aboutgroup.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])
				
				
		// menu : Technology
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("- Research & Development", "research-development.htm");
		menu2.addItem("- Processing & Packaging", "processing-packaging.htm");
		menu2.addItem("- Quality Certification", "qualitycertificate.htm");
		menu2.addItem("- Quality Control", "qualitycontrol.htm");


		// menu : Products
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		
		menu3.addItem("- Pickles", "Pickles.htm");
		
				// Products / Pickes		
				var menu31 = menu3.addMenu(menu3.items[0]);
				menu31.addItem("- Priya Pickles","pickles.htm");
				menu31.addItem("- Delight Pickles","delightpickles.htm");
				menu31.addItem("- Priya Sweet Pickles","sweetpickles.htm");		
				menu31.addItem("- Ramya Pickles","ramyapickles.htm");
				//menu31.addItem("- Ramya Ghar Pariwar","ramyagharpariwar.htm");
				menu31.addItem("- Delight Tamarind Chutney","Tamarindchutney.htm");
		
		menu3.addItem("- Powders", "Powders.htm");
		
				// Products / Powders		
				var menu32 = menu3.addMenu(menu3.items[1]);
				menu32.addItem("- Spice Powders","spicepowders.htm");
				menu32.addItem("- Masala Powders","masalapowders.htm");		
				menu32.addItem("- Curry Masala Powders","currymasalapowders.htm");
				menu32.addItem("- Traditional Powders","traditionalpowders.htm");
				menu32.addItem("- Premium Powders","premiumpowders.htm");
				
		menu3.addItem("- Pastes", "Pastes.htm");
		
				// Products / Pastes		
				var menu33 = menu3.addMenu(menu3.items[2]);
				menu33.addItem("- Masala Pastes","masalapastes.htm");
				menu33.addItem("- Culinary Pastes","culunarypastes.htm");
				menu33.addItem("- Pulihora Paste", "pulihorapaste.htm");		
		
		menu3.addItem("- Instant Mixes", "instantmixes.htm");
		menu3.addItem("- Edible Oils", "edibleoils.htm");
		menu3.addItem("- Commodities", "Commodities.htm");
		
		//menu3.addItem("- Pulihora Paste", "pulihorapaste.htm");
		menu3.addItem("- Papads", "papads.htm");
		menu3.addItem("- Convenient Mixes", "ConvenientMixes.htm");
		menu3.addItem("- Ready to Eat", "readytoeat.htm");
		//menu3.addItem("- Confectionary", "confectionary.htm");

			
		


		//menu : Business with us
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("- Business with Us", "businesswithus.htm");
		menu4.addItem("- Business Terms", "businessterms.htm");
		menu4.addItem("- Trade Enquiry Form", "tradeenquiryform.htm");
		menu4.addItem("- Bulk Business", "bulkbusiness.htm");
		menu4.addItem("- Priya Outlets ", "Outlets.htm");
		// menu : Careers
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("- HRD", "hrd.htm");
		menu5.addItem("- Finance", "finance.htm");
		menu5.addItem("- Marketing", "marketing.htm");
		menu5.addItem("- R & D", "research.htm");
        menu5.addItem("- Sales & Distribution", "sales.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();
	}