	// 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
		//==================================================================================================

		
		// Hosting menu
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("<span class='a1'> <div></div>Linux Web Hosting</span>", "linux-web-hosting-india.html");
		menu1.addItem("<span class='a2'> <div></div>Windows Web Hosting</span>", "windows-web-hosting-india.html");
		menu1.addItem("<span class='d1'> <div></div>Cluster Mail Server</span>", "cluster_mail_server_india.html");
		
		
		// Services menu
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("<span class='d1'> <div></div>Web Hosting</span>", "services.html");
		menu2.addItem("<span class='d5'> <div></div>Domain Booking</span>", "services.html");
		menu2.addItem("<span class='b2'> <div></div>Web Designing</span>", "services.html");
		menu2.addItem("<span class='d5'> <div></div>Yellow Pages Listing </span>", "services.html");
		menu2.addItem("<span class='d1'> <div></div>Dedicated Server</span>", "services.html");
		menu2.addItem("<span class='d3'> <div></div>Business 2 Business Promotion </span>", "services.html");
		
		// Support menu
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("<span class='c2'> <div></div>Technical Support</span>", "support.html");
		menu3.addItem("<span class='d6'> <div></div>Online Order Form</span>", "support.html");
	
		
		// Resellers menu
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("<span class='a1'> <div></div>Linux Resellers Hosting</span>", "resellers-web-hosting-india.html");
		menu4.addItem("<span class='a2'> <div></div>Windows Resellers Hosting</span>", "resellers-web-hosting-india.html");
		
		// Contact us menu
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("<span class='b1'> <div></div>Reach us</span>", "contact.html");
		menu5.addItem("<span class='c1'> <div></div>Feedback Form</span>", "contact.html#feedback");
				
		
		mtDropDown.renderAll();
	}
