if (TransMenu.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 TransMenuSet(TransMenu.direction.down, 1, 0, TransMenu.reference.bottomLeft);



		//==================================================================================================

		// create a dropdown menu

		//==================================================================================================

		// the first parameter should be the HTML element which will act actuator for the menu

		//==================================================================================================

		var menu1 = ms.addMenu(document.getElementById("aboutus"));

		menu1.addItem("Mission", "http://www.ide-india.org/ide/abtus1.shtml#IDEIs_MISSION_"); 

		menu1.addItem("Board of Directors", "http://www.ide-india.org/ide/bod.shtml");

		menu1.addItem("Operational areas", "http://www.ide-india.org/ide/oa.shtml");

		menu1.addItem("People benefited", "http://www.ide-india.org/ide/abtus2.shtml#People_Benefited_and_need_for_technology");

		menu1.addItem("Uniqueness", "http://www.ide-india.org/ide/abtus2.shtml#Why_is_IDEI_Uniqe");






//==================================================================================================



		//==================================================================================================

		var menu2 = ms.addMenu(document.getElementById("ourprograms"));

		menu2.addItem("Treadle Pump", "http://www.ide-india.org/ide/treadlepump.shtml");

		menu2.addItem("ADITI (affordable drip irrigation technologies)", "http://www.ide-india.org/ide/drip.shtml");

		menu2.addItem("Business Development Service (BDS) Program", "http://www.ide-india.org/ide/bds.shtml");

		menu2.addItem("Integrating Poor into Market Systems (IPMAS)", "http://www.ide-india.org/ide/ipmas.shtml");

		menu2.addItem("Crop Post Harvest Programme", "http://www.ide-india.org/ide/cphp.shtml");

		menu2.addItem("Production Sales and Promotional Activities ", "http://www.ide-india.org/ide/pspa.shtml");

		menu2.addItem("Products & Technologies", "http://www.ide-india.org/ide/product-technologies.shtml");

		menu2.addItem("   ~ Products Gallery", "http://www.ide-india.org/ide/pt/");



		//==================================================================================================



		//==================================================================================================

		var menu3 = ms.addMenu(document.getElementById("getinvolved"));

		menu3.addItem("Advocate", "#");

		menu3.addItem("Donate", "http://www.ide-india.org/ide/donate.shtml");

		menu3.addItem("Career", "http://www.ide-india.org/ide/career.shtml");



		//==================================================================================================



		//==================================================================================================

		var menu4 = ms.addMenu(document.getElementById("partners"));

		menu4.addItem("Donors", "http://www.ide-india.org/ide/donors.shtml");

		menu4.addItem("NGOs & Institutes", "#");

		menu4.addItem("Related links", "http://www.ide-india.org/ide/relatedlinks.shtml");



		//==================================================================================================



		//==================================================================================================



//==================================================================================================



		//==================================================================================================

		// 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.

		//==================================================================================================

		TransMenu.renderAll();

	}