

	// 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
		//==================================================================================================
		
		
			var menu1 = ms.addMenu(document.getElementById("menu1"));
		
			menu1.addItem("<img src=\"images/menu_arrow1.gif\" align=\"absbottom\" > About the Founder", "company.asp?p=93");
		
			menu1.addItem("<img src=\"images/menu_arrow1.gif\" align=\"absbottom\" > History", "company.asp?p=65");
		
			menu1.addItem("<img src=\"images/menu_arrow1.gif\" align=\"absbottom\" > Overview", "company.asp?p=64");
		
			menu1.addItem("<img src=\"images/menu_arrow1.gif\" align=\"absbottom\" > Vision", "company.asp?p=69");
		
			var menu2 = ms.addMenu(document.getElementById("menu2"));
		
			menu2.addItem("<img src=\"images/menu_arrow1.gif\" align=\"absbottom\" > Ship Owning", "shipowning.asp?p=66");
		
			var menu4 = ms.addMenu(document.getElementById("menu4"));
		
			menu4.addItem("<img src=\"images/menu_arrow1.gif\" align=\"absbottom\" > PANAMAX", "fleet.asp?p=39");
		
			var subMenu39_1 = menu4.addMenu(menu4.items[0]);
		
			subMenu39_1.addItem("<img src=\"images/menu_arrow1.gif\" > Darya Radhe", "fleet.asp?p=43");
		
			subMenu39_1.addItem("<img src=\"images/menu_arrow1.gif\" > Darya Tara", "fleet.asp?p=44");
		
			subMenu39_1.addItem("<img src=\"images/menu_arrow1.gif\" > Darya Shanthi", "fleet.asp?p=47");
		
			subMenu39_1.addItem("<img src=\"images/menu_arrow1.gif\" > Darya Shree", "fleet.asp?p=45");
		
			menu4.addItem("<img src=\"images/menu_arrow1.gif\" align=\"absbottom\" > GEARED PANAMAX VESSELS", "fleet.asp?p=41");
		
			var subMenu41_1 = menu4.addMenu(menu4.items[1]);
		
			subMenu41_1.addItem("<img src=\"images/menu_arrow1.gif\" > Darya Noor", "fleet.asp?p=48");
		
			menu4.addItem("<img src=\"images/menu_arrow1.gif\" align=\"absbottom\" > HANDYMAX VESSELS", "fleet.asp?p=40");
		
			var subMenu40_1 = menu4.addMenu(menu4.items[2]);
		
			subMenu40_1.addItem("<img src=\"images/menu_arrow1.gif\" > Darya Rani", "fleet.asp?p=51");
		
			menu4.addItem("<img src=\"images/menu_arrow1.gif\" align=\"absbottom\" > CEMENT CARRIERS", "fleet.asp?p=42");
		
			var subMenu42_1 = menu4.addMenu(menu4.items[3]);
		
			subMenu42_1.addItem("<img src=\"images/menu_arrow1.gif\" > Darya Maan", "fleet.asp?p=101");
		
			subMenu42_1.addItem("<img src=\"images/menu_arrow1.gif\" > Darya Jaan", "fleet.asp?p=50");
		
			subMenu42_1.addItem("<img src=\"images/menu_arrow1.gif\" > Darya Shaan", "fleet.asp?p=49");
		
			var menu5 = ms.addMenu(document.getElementById("menu5"));
		
			menu5.addItem("<img src=\"images/menu_arrow1.gif\" align=\"absbottom\" > Board of Directors", "management.asp?p=71");
		
			menu5.addItem("<img src=\"images/menu_arrow1.gif\" align=\"absbottom\" > Management Team - Hong Kong", "management.asp?p=72");
		
			menu5.addItem("<img src=\"images/menu_arrow1.gif\" align=\"absbottom\" > Management Team - India", "management.asp?p=87");
		
		
		
		//==================================================================================================
		// 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();
	}
