	if (TransMenu.isSupported()) {

		//==================================================================================================
		// create a set of dropdowns
		//==================================================================================================
		// the first param usuallly is "down", but as it is here, it is "right"
		//
		// 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.right, -5, 3, TransMenu.reference.topRight);

        		//==================================================================================================
		// create a dropdown menu for services (id=m100)
		//==================================================================================================
		var menu1 = ms.addMenu(document.getElementById);
		menu1.addItem();
		menu1.addItem();
		menu1.addItem();
		


//			submenu0.addItem("Sign Up for Shell & Project Alert", "sign_up_for_shell.htm");
		//menu1.addItem("Corporate Finance", "corporate_finance.htm");
		
		//menu1.addItem("China Business Advisory", "china_business_advisory.htm");
		//==================================================================================================

   		//==================================================================================================
		// create a dropdown menu for About Us (id=m200)
		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("m200"));
//		menu2.addItem("Company Overview", "company_overview.htm");
		menu2.addItem("About Us", "aboutus.htm");
		menu2.addItem("The Sattva Team", "advisors.htm");
		menu2.addItem("Services", "services.htm");
		
		menu2.addItem("Sattva's Network ", "sattvas_global_network.htm");
//		menu2.addItem("Clients", "clients.htm");
		menu2.addItem("Transactions", "transactions.htm");
		menu2.addItem("Transaction News", "transaction_news.htm");
				
		
		//		menu2.addItem("Conference Presentations", "conference_presentations.htm");
//		menu2.addItem("Careers", "careers.htm");
		//menu2.addItem("Photo Gallery", "photo_gallery.htm");
		//==================================================================================================
		
		var menu3 = ms.addMenu(document.getElementById("m300"));
		menu3.addItem("News & Events", "newsevents.htm");
		menu3.addItem("Publications", "publications.htm");
		menu3.addItem("Careers", "careers.htm");

		//==================================================================================================
		// create a dropdown menu for Investors, media (id=m300)
		//==================================================================================================
		//var menu3 = ms.addMenu(document.getElementById("m300"));
		//menu3.addItem("Media Coverage", "media_coverage.htm");
//		menu3.addItem("Press Releases", "press_releases.htm");
		//menu3.addItem("Media Kit", "media_kit.htm");
			//var submenu0 = menu3.addMenu(menu3.items[1]);
			//submenu0.addItem("Sattva&acute;s Profile", "sattva_profile.htm");
			//submenu0.addItem("Sattva&acute;s Logo", "sattva_logo.htm");
//		menu3.addItem("Contact us", "contact_us.htm");

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


		//==================================================================================================
		// create a dropdown menu for Contact Us (id=m400)
		//==================================================================================================
		//var menu4 = ms.addMenu(document.getElementById("m400"));
		//==================================================================================================
		

		//==================================================================================================
		// create a dropdown menu for Corporate info (id=m500)
		//==================================================================================================
//		var menu5 = ms.addMenu(document.getElementById("m500"));
//		menu5.addItem("Transactions", "transactions.htm");
//		menu5.addItem("Sattva's Network", "sattvas_global_network.htm");
//		menu5.addItem("Conference Presentations", "conference_presentations.htm");
//		menu5.addItem("Careers", "careers.htm");
		//==================================================================================================

		//==================================================================================================
		// Note: to add another menu item (dynamic), use the id=m500
		//       the following files need to be modified as well: 
		//			"menuInitialize.js" 
		//			"menu.inc"
		//==================================================================================================
		// var menu5 = ms.addMenu(document.getElementById("m500"));
		// menu5.addItem("sub #1", "#");
		// menu5.addItem("sub #2", "#");
		// menu5.addItem("sub #3", "#");
		// menu5.addItem("sub #4", "#");
		//==================================================================================================


		//==================================================================================================
		// 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();
	}
