	// 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 (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, 0, 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("home"));
		
		menu1.addItem("Message From the Founders", "/about-basc/message-from-the-founders.asp");
		menu1.addItem("Quality Care Statistics", "/about-basc/quality-care.asp");
		menu1.addItem("Take an Online Tour", "/about-basc/take-an-online-tour.asp"); 
		menu1.addItem("CMC Partnership", "/about-basc/cmc-partnership.asp"); 
		menu1.addItem("Accreditation", "/about-basc/accreditation.asp"); 
		menu1.addItem("Billing Information", "/about-basc/billing-information.asp"); 

//example for 3rd level navigation
/*var submenu00 = submenu0.addMenu(submenu0.items[0]);
    submenu00.addItem("foo");
    submenu00.addItem("bar");*/
		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("business"));
		menu2.addItem("Surgery", "#");
		menu2.addItem("Endoscopy", "#");


		var submenu0 = menu2.addMenu(menu2.items[0]);
		var submenu1 = menu2.addMenu(menu2.items[1]);

		submenu0.addItem("Adults", "#");
		submenu0.addItem("Children", "#");
		
		submenu1.addItem("Colonoscopy", "/patients/endoscopy/endo-colon.asp");
		submenu1.addItem("EGD", "/patients/endoscopy/endo-egd.asp");
		submenu1.addItem("FAQ'S", "/patients/endoscopy/endo-faq.asp")
		
		var subsubmenu0 = submenu0.addMenu(submenu0.items[0]);

		subsubmenu0.addItem("Before Your Surgery", "/patients/surgery/adults/before-your-surgery.asp");
		subsubmenu0.addItem("The Day of Your Surgery", "/patients/surgery/adults/the-day-of-your-surgery.asp");
		subsubmenu0.addItem("After Your Surgery", "/patients/surgery/adults/after-your-surgery.asp");
		subsubmenu0.addItem("Surgery FAQ's", "/patients/surgery/adults/faqs.asp");
		
		var subsubmenu1 = submenu0.addMenu(submenu0.items[1]);
		
		subsubmenu1.addItem("Before Your Surgery", "/patients/surgery/children/before-your-surgery.asp");
		subsubmenu1.addItem("The Day of Your Surgery", "/patients/surgery/children/the-day-of-your-surgery.asp");
		subsubmenu1.addItem("After Your Surgery", "/patients/surgery/children/after-your-surgery.asp");
		subsubmenu1.addItem("Surgery FAQ's", "/patients/surgery/children/faqs.asp");
		
		//==================================================================================================

		TransMenu.renderAll();
	}
