	// 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.down, 0, 0, mtDropDown.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================

		//
		
		// RoboCup Rescue
	     var menu3 = ms.addMenu(document.getElementById("menu1"));
            menu3.addItem("Introduction", "http://www.nspt.in/introduction.html");		
            menu3.addItem("About NSPT", "http://www.nspt.in/aboutnspt.html");
			menu3.addItem("Test Format", "http://www.nspt.in/testformats.html");
		
		 var menu4 = ms.addMenu(document.getElementById("menu2"));
		 	menu4.addItem("NSPT in News", "http://www.nspt.in/gallery/pressrelease.html");
            menu4.addItem("Photo Gallery", "http://www.nspt.in/photogallery.html");		
			
		 var menu5 = ms.addMenu(document.getElementById("menu3"));
            menu5.addItem("Toppers 2011", "http://www.nspt.in/toppers_2011.html");
            menu5.addItem("Toppers 2010", "http://www.nspt.in/toppers_2010.html");
            menu5.addItem("Toppers 2009", "http://www.nspt.in/toppers.html");		


		
		// Robocup Junior
		//var menu4 = ms.addMenu(document.getElementById("menu2"));
		//menu4.addItem("Message From Director","http://www.globalpublicschool.com/messagefromdirector.html");		
		//menu4.addItem("Our Teaching Methodology","http://www.globalpublicschool.com/teachingmethodology.html");		
		//menu4.addItem("Co-Curricular Activities","http://www.globalpublicschool.com/cocurricular_activity.html");		
	//	menu4.addItem("Course Curriculum","http://www.globalpublicschool.com/coursecurriculum.html");		
	//	menu4.addItem("Sports & Fitness","http://www.globalpublicschool.com/sports_fitness.html");		
	//	menu4.addItem("Expectation From Parents ","http://www.globalpublicschool.com/expectationparents.html");		
	//	menu4.addItem("Unique Feature of GPS ","http://www.globalpublicschool.com/uniquefeatures.html");
	//	menu4.addItem("Photo Gallery ","#");		
		
		//var subMenu47 = menu4.addMenu(menu4.items[7]);
		//subMenu47.addItem("Group Photograph","http://www.globalpublicschool.com/gallary/groupphoto_2010.html");
		//subMenu47.addItem("Glimpses","http://www.globalpublicschool.com/gallary/glimpses.html");
		//subMenu47.addItem("Play-Group","http://www.globalpublicschool.com/gallary/playgroup.html");
		//subMenu47.addItem("Pre- Primary","http://www.globalpublicschool.com/gallary/PrePrimary.html");
		//subMenu47.addItem("Primary","http://www.globalpublicschool.com/gallary/Primary.html");
		//subMenu47.addItem("Annual Function 2010","http://www.globalpublicschool.com/gallary/annualfunction_2010.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();
	}

