	// 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, 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 menu2 = ms.addMenu(document.getElementById("button2"));
		menu2.addItem("About NHBSR", "/about-nhbsr/");
		menu2.addItem("Our Approach", "/about-nhbsr/our-approach.asp");
		menu2.addItem("Programs & Services", "/about-nhbsr/programs-and-services/");
		menu2.addItem("Our Board & Staff", "/about-nhbsr/our-board-staff.asp");
		menu2.addItem("Our History", "/about-nhbsr/our-history/");
		menu2.addItem("Partnerships", "/about-nhbsr/partnerships.asp");
		menu2.addItem("Frequently Asked Questions", "/join-nhbsr/frequently-asked-questions.asp");
		menu2.addItem("Career & Volunteer Opportunities", "/about-nhbsr/career-volunteeer-opportunities.asp");
		

		var submenu0 = menu2.addMenu(menu2.items[2]);
		var submenu1 = menu2.addMenu(menu2.items[3]);

		submenu0.addItem("Breakfast with the Best", "/about-nhbsr/programs-and-services/breakfast-with-the-best.asp");
		submenu0.addItem("Go On Tour", "/about-nhbsr/programs-and-services/go-on-tour.asp");
		submenu0.addItem("Spring Conference", "/about-nhbsr/programs-and-services/spring-conference.asp");
		submenu0.addItem("Annual Meeting", "/about-nhbsr/programs-and-services/annual-meeting.asp");
		submenu0.addItem("Annual NHBSR Award", "/about-nhbsr/programs-and-services/annual-nhbsr-award.asp");
		submenu0.addItem("Speaking Opportunities", "/about-nhbsr/programs-and-services/speaking-opportunities.asp");
		submenu0.addItem("Webinars", "/about-nhbsr/programs-and-services/webinars.asp");

		submenu1.addItem("Historical Highlights", "/about-nhbsr/our-history/historical-highlights.asp");

		var menu3 = ms.addMenu(document.getElementById("button3"));
		menu3.addItem("Our Members", "/our-members/");
		menu3.addItem("Founding/Innovator Members", "/our-members/founding-sustaining-members.asp");
		menu3.addItem("Sustainer Level Members", "/our-members/gold-level-members.asp");
		menu3.addItem("Featured Member", "/our-members/featured-member.asp");
		menu3.addItem("Member Profiles", "/our-members/member-profiles.asp");
		menu3.addItem("Member Testimonials", "/join-nhbsr/hear-from-current-members.asp");


		var menu4 = ms.addMenu(document.getElementById("button4"));
		menu4.addItem("Join NHBSR", "/join-nhbsr/");
		menu4.addItem("Membership Benefits", "/join-nhbsr/membership-benfits.asp");
		menu4.addItem("Membership Levels", "/join-nhbsr/membership-levels.asp");
		menu4.addItem("Membership Application", "/join-nhbsr/membership-application.asp");
		menu4.addItem("What Can NHBSR do for my Business?", "/join-nhbsr/what-can-nhbsr-do-for-my-business.asp");
		menu4.addItem("Hear From Current Members", "/join-nhbsr/hear-from-current-members.asp");
		menu4.addItem("Frequently Asked Questions", "/join-nhbsr/frequently-asked-questions.asp");
		menu4.addItem("Request Additional Information", "/join-nhbsr/request-additional-information.asp");

		var menu5 = ms.addMenu(document.getElementById("button5"));
		menu5.addItem("News & Events", "/news-events/"); 
		menu5.addItem("Calendar of Events", "/news-events/calendar-of-events.asp"); 
		menu5.addItem("NHBSR News & Press Releases", "/news-events/nhbsr-news-press-releases.asp"); 
		menu5.addItem("NHBSR Newsletter", "/news-events/nhbsr-newsletter.asp"); 
		menu5.addItem("Photo & Video Library", "/news-events/photo-video-library.asp"); 

		var menu6 = ms.addMenu(document.getElementById("button6"));
		menu6.addItem("Resources", "/resources/"); 
		menu6.addItem("What is Social Responsibility", "/resources/what-is-social-responsibility/"); 
		menu6.addItem("Corporate Social Responsibility Issues", "/resources/corporate-social-responsibility-issues.asp"); 
		menu6.addItem("Public Policy", "/resources/public-policy.asp"); 
		menu6.addItem("CSR Information Center", "/resources/csr-information-center.asp"); 
		menu6.addItem("Helpful Links", "/resources/helpful-links.asp"); 		

		var submenu0 = menu6.addMenu(menu6.items[1]);
		
		submenu0.addItem("How Can CSR Help Your Company?", "/resources/what-is-social-responsibility/how-can-csr-help.asp");

		var menu7 = ms.addMenu(document.getElementById("button7"));
		menu7.addItem("Contact Us", "/contact-us/");
		menu7.addItem("Request Additional Information", "/contact-us/request-additional-information.asp"); 		

		TransMenu.renderAll();
	}
