	// 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
		//==================================================================================================
		// website designer chetram raniwal - contact no:9891470215 - address: H-139 Dr. Ambedkar nagar sector-I, New Delhi-110062
		//
		// 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, -2, 0, mtDropDown.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================

		
		//   Windows Hosting Menu
		
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("<span class='d2'> <div></div><font></font>ASP.Net Panel HController-Free IP</span>", "windows-web-hosting-india.html");
		menu1.addItem("<span class='d5'> <div></div>DotNET Panel</span>", "windows_hosting_delhi.htm");
		menu1.addItem("<span class='d4'> <div></div>Hsphere Panel</span>", "windows-web-hosting-reseller5000.html");
		menu1.addItem("<span class='d3'> <div></div>Proprietory Panel</span>", "windows_hosting_20gb_space.html");
		menu1.addItem("<span class='d6'> <div></div>Plesk Control Panel</span>", "windows_web_hosting_india_plesk.html");
		
		//   Resellers Hosting Menu
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("<span class='a1'> <div></div>Linux Resellers Hosting</span>", "linux-resellers-web-hosting-india.html");
		menu2.addItem("<span class='a2'> <div></div>Windows Resellers Hosting</span>", "windows-reseller-web-hosting-india.html");
		
		//   Cluster Mail Server Menu
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("<span class='d1'> <div></div>Cluster Mail Server</span>", "cluster_mail_server_india.html");
		menu3.addItem("<span class='c2'> <div></div>Mega Cluster Mail Server </span>", "mega_cluster_mail_server_india.html");
		
		//   About US Menu
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("<span class='c1'> <div></div>About Economicalhost.com</span>", "aboutus.html");
		menu4.addItem("<span class='c2'> <div></div>Our Services</span>", "services.html");
		menu4.addItem("<span class='c3'> <div></div>Acceptable Usage Policy</span>", "web-hosting-policy.html");
		
		
		mtDropDown.renderAll();
	}