	
	if (mtDropDown.isSupported()) {

		var ms = new mtDropDownSet(mtDropDown.direction.down, 0,-3, mtDropDown.reference.bottomLeft);
		
		//Menu1 --About Us
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		//menu1.addItem(" Group", "http://www.google.co.in"); // send no URL if nothing should happen onclick
		menu1.addItem(" Online Data Collection ", "ODC.html"); // send no URL if nothing should happen onclick
		menu1.addItem(" Real-Time Online Reporting", "ROR.html");
		menu1.addItem(" Interactive Cross-Tabs", "IT.html");
		menu1.addItem(" Sample Management", "SM.html");
		menu1.addItem(" Data Processing", "DP.html"); 
		menu1.addItem(" Data Warehousing & Mining ", "DW.html"); 
		menu1.addItem(" Graphical Reporting ", "GR.html"); 
		menu1.addItem(" Online Focus Group ", "OFG.html"); 		
		menu1.addItem(" Mobile and PDA Solutions ", "mob.html"); 
		menu1.addItem(" Market Research Transcription ", "MRT.html"); 
		menu1.addItem(" Demo ", "demonstration.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 = menu1.addMenu(menu1.items[1]);
		subMenu1.addItem("· (ss) Shared-Server", "http://www.mediatemple.net/services/webhosting/ss/linux-standard/");
		subMenu1.addItem("· (as) Appliance-Server", "http://www.mediatemple.net/services/webhosting/as/linux/");
		subMenu1.addItem("· (ds) Dedicated-Server", "http://www.mediatemple.net/services/webhosting/ds/linux/");
		subMenu1.addItem("· (fc) Flash Communication Server MX", "http://www.mediatemple.net/services/webhosting/flashcom/shared/");
		subMenu1.addItem("· Infrastructure/Technology", "http://www.mediatemple.net/company/aboutus/techology-infrastructure.php");*/

		// submenu
/*		var subMenu2 = menu1.addMenu(menu1.items[2]);
		subMenu2.addItem("· Mad Merch (full solution)", "http://www.mediatemple.net/services/madmerch/");*/

		// menu : Get Started
		//Menu2:Why DPI
		
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Fully Customizable", "WHYUS.htm");
		menu2.addItem("Unrivaled Fast Turnaround", "WHYUS_UF.htm");
		menu2.addItem("Accurate Data", "WHYUS_AD.htm");
		menu2.addItem("Robust & Flexible Surveys", "WHYUS_RFS.htm");
		menu2.addItem("Unlimited Reporting Options", "WHYUS_URO.htm");
		menu2.addItem("Proactive Quality Assurance", "WHYUS_PQA.htm");
		menu2.addItem("Brand Your Surveys", "WHYUS_BYS.htm");
		menu2.addItem("Scalability to Any Level", "WHYUS_SAL.htm");
		menu2.addItem("Additional Features and Advantages", "WHYUS_AFA.htm");
		
		
		// menu
		//Menu3: Services
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem(" Mission", "Mission.htm");
		//menu3.addItem(" People", "People.htm");
		menu3.addItem(" Career", "Careers.htm");
		menu3.addItem(" Our Clients", "Clients.htm");


		// menu
		//Menu4:Buy 
		//var menu4 = ms.addMenu(document.getElementById("menu4"));
		//menu4.addItem("How To Sign On", "http://www.google.co.in");
		//menu4.addItem(" Whom To Contact", "http://www.google.co.in");
		//menu4.addItem(" City", "http://www.google.co.in");
		//menu4.addItem(" Key Facts", "http://www.google.co.in");
				
		// menu : Company
		//Menu5: Demos

		//var menu5 = ms.addMenu(document.getElementById("menu5"));
		//menu5.addItem("View", "http://www.google.co.in");
		//menu5.addItem("tttttttt", "http://www.google.co.in");
		//menu5.addItem("Location", "http://www.google.co.in");
		/*menu5.addItem("- Contact", "http://www.google.co.in");
		menu5.addItem("- Clients", "http://www.google.co.in");
		menu5.addItem("- Success", "http://www.google.co.in");*/

		//Menu6:Reach Us
		/*var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("Contact Us", "http://www.google.co.in");
		menu6.addItem(" Customer Services", "http://www.google.co.in");
		menu6.addItem(" Chairman", "http://www.google.co.in");
		menu6.addItem(" Reach Us", "http://www.google.co.in");*/

		//Menu7:Media

		//var menu7 = ms.addMenu(document.getElementById("menu7"));

		//Menu8:Careers

		//var menu8 = ms.addMenu(document.getElementById("menu8"));

		//Menu9:SiteMap

		//var menu9 = ms.addMenu(document.getElementById("menu9"));



		//==================================================================================================
		
		mtDropDown.renderAll();
	}

