	// 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
		//==================================================================================================

		//
		// Domains
		//
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Vision & Mission", "mission_vision.html");
		menu2.addItem("Governing Body", "governing_body.html");
		menu2.addItem("Message by Chairman", "chairman_message.html");
		menu2.addItem("Message by Director General", "directorm_message.html");
		//menu2.addItem("Director's Message", "directorm_message.html");
		//menu2.addItem("Academic Policy", "#");
		//menu2.addItem("Beyond the Classroom", "#");
		//menu2.addItem("Projects Undertaken", "#");
		//menu2.addItem("Mandatory Disclosure", "#");
		//menu2.addItem("Infrastructure", "#");


		//var subMenu21 = menu2.addMenu(menu2.items[9]);
		//subMenu21.addItem("Facilities","#");
		//subMenu21.addItem("The Campus","#");
		//subMenu21.addItem("The Hostal","#");
		//subMenu21.addItem("Information Technology Lab","#");


		
	

		//==================================================================================================

		//==================================================================================================
		// 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])
		//==================================================================================================		

		//
		// Web Services
		//menu3
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("The Pillars","the_pillars.html");
		menu3.addItem("Academecians","academecians.html");
		//menu3.addItem("Sports","sports.html");
		//menu3.addItem("Laboratories","laboratories.html");
		//menu3.addItem("Computer Center","computer_center.html");
		//menu3.addItem("Facilities","facilities.html");
		//menu3.addItem("Communication Lab","communication_lab.html");
		
			
		//
		// Multimedia
		//menu4 
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("B. Tech.","btech.html");
		menu4.addItem("MBA","mba.html");
		menu4.addItem("PGDM", "pgdm.html");
		menu4.addItem("BBA", "bba.html");
		menu4.addItem("M. Sc. (Biotechnology)", "msc.html");
		menu4.addItem("B. Sc. (Biotechnology)", "bsc.html");
		menu4.addItem("B.Ed.", "bed.html");
		//menu4.addItem("PGDM", "pgdm.html");
		//menu4.addItem("PGDM", "pgdm.html");

		///var subMenu41 = menu4.addMenu(menu4.items[1]);
		//subMenu41.addItem("Campus Placements","#");
		//subMenu41.addItem("International Prospective","#");
		//subMenu41.addItem("Shortlisted Candidates","#");
		

		// The team Manage Menu
		
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("CRD","crd.html");
		menu5.addItem("Alumni Registration","alumni_reg.php");
		menu5.addItem("Firstnaukri.com","http://firstnaukri.com", "_blank");
		//menu5.addItem("Press Release","#");

		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("Enquiry Form","enquiry.php");
		menu6.addItem("Admission Details", "admission_details.html");
		menu6.addItem("FAQ's", "faqs.html");
		//menu6.addItem("Faqs", "faqs.html");
		//menu6.addItem("BSc(BBT)", "bsc.html");
		//menu6.addItem("B.Ed.", "bed.html");
		
		var subMenu61 = menu6.addMenu(menu6.items[1]);
		subMenu61.addItem("B.Tech.","admission_btech.html");
		subMenu61.addItem("MBA","admission_mba.html");
		subMenu61.addItem("PGDM", "admission_pgdm.html");
		subMenu61.addItem("BBA", "admission_bba.html");
		subMenu61.addItem("M.Sc. (Biotechnology)", "admission_msc.html");
		subMenu61.addItem("B.Sc. (Biotechnology)", "admission_bsc.html");
		subMenu61.addItem("B.Ed.", "admission_bed.html");
		
		
		//subMenu41.addItem("Campus Placements","#");
		//subMenu41.addItem("International Prospective","#");
		//subMenu41.addItem("Shortlisted Candidates","#");

		var menu7 = ms.addMenu(document.getElementById("menu7"));
		menu7.addItem("Highlights","highlights.html");
		menu7.addItem("Congratulations", "congratulations.html");
		//menu7.addItem("Summar Training", "summar_training.html");
		//menu7.addItem("Alumni Speak", "alumni_speak.html");
		//menu7.addItem("Alumni Registration Form", "alumni_registration_form.html");
		//menu7.addItem("B.Ed.", "bed.html");	
		
		var menu8 = ms.addMenu(document.getElementById("menu8"));
		menu8.addItem("Library","library.html");
		menu8.addItem("Computer Lab", "computer_center.html");
		menu8.addItem("Biotech Lab", "biotech_lab.html");
		menu8.addItem("Communication Lab", "communication_lab.html");
		menu8.addItem("Wi-Fi Campus", "wifi_campus.html");
		menu8.addItem("Auditorium", "auditorium.html");	
		menu8.addItem("Conference Hall", "conference_hall.html");	
		menu8.addItem("Cafeteria", "cafeteria.html");	
		menu8.addItem("Hostel", "hostel.html");	
		menu8.addItem("Lecture Halls", "lecture_halls.html");	
		menu8.addItem("Transport", "transport.html");	
		//menu8.addItem("Corporate Film", "corporate_film.html");			
		
		var menu9 = ms.addMenu(document.getElementById("menu9"));
		menu9.addItem("Gallery","life_mangalmay.html");
		menu9.addItem("Institute Film", "institute_film.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();
	}

