	// 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 design by 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
		//==================================================================================================

		//
		//   A Tutors Bureau 
		//
		
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("<span class='a1'> <div></div>About Company</span>", "aboutus.html");
		menu1.addItem("<span class='a2'> <div></div>Our Services </span>", "our_services.html");
				
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("<span class='s0'> <div></div> Latest Web Design </span>", "latest_porfolio.html");
		menu2.addItem("<span class='s1'> <div></div> Shopping Cart </span>", "shopping_cart_porfolio.html");
		menu2.addItem("<span class='s2'> <div></div> Directory </span>", "directory_porfolio.html");
		menu2.addItem("<span class='s3'> <div></div> Classifieds Ads System </span>", "classifieds_ads_system_porfolio.html");
		menu2.addItem("<span class='s4'> <div></div> Travel and Tours </span>", "travel_and_tours_porfolio.html");
		menu2.addItem("<span class='s5'> <div></div> Education </span>", "education_porfolio.html");
		menu2.addItem("<span class='s6'> <div></div> Medical </span>", "medical_porfolio.html");
		menu2.addItem("<span class='s7'> <div></div>Real Estate </span>", "real_estate_porfolio.html");
		menu2.addItem("<span class='s8'> <div></div>Blogs</span>", "blogs_porfolio.html");
		menu2.addItem("<span class='s9'> <div></div> Interiors </span>", "interiors_porfolio.html");
		menu2.addItem("<span class='s10'> <div></div> Hotels </span>", "hotels_porfolio.html");
		menu2.addItem("<span class='s11'> <div></div> More Our Portfolios</span>", "more_porfolio.html");
		
		
				//==================================================================================================

		//==================================================================================================
		// 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])
		//==================================================================================================		

		//
		// A Coaching Institute
		//
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("<span class='c2'> <div></div>Budget Designing Packages India</span>", "budget_web_designing_india_packages.html");
		//
		

		//==================================================================================================
		// 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();
	}

