	// 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 (dropDown.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 dropDownSet(dropDown.direction.down, 14, 0, dropDown.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("&middot; Code of Conduct", "#"); // send no URL if nothing should happen onclick
		
		//OUR TEAM==================================================================================================
		/*
	var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("&middot; Dr. Fred Johnson","fjohnson.html");
		//menu2.addItem("&middot; Sue Melton", "smelton.html");
		menu2.addItem("&middot; Tracy Felmer", "tfelmer.html");*/
		
		//PROGRAMS & SERVICES==================================================================================================
		
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("&middot; Leadership Development", "leadership-development.html");
		menu3.addItem("&middot; Strategic Planning", "strategic-planning.html");
		menu3.addItem("&middot; Coaching","coaching.html");
		menu3.addItem("&middot; Consulting & Professional Speaking", "consulting-and-professional-speaking.html");
		menu3.addItem("&middot; Initiative's Retreat","initiatives-retreat.html");
		
		//==================================================================================================
		// add a sub-menu
		//==================================================================================================
		// to add a sub menu to an existing menu object, call it's addMenu method and pass it the item from
		// the parent menu which should act as it's actuator. To add a submenu to the fourth item of a menu
		// called "theMenu", you would do theMenu.addMenu(theMenu.items[3])
		//==================================================================================================
		
		// submenu	
		//var subMenu3 = menu3.addMenu(menu3.items[0]);
		//subMenu3.addItem("&middot; Overview","ps_ld_overview.html");
		//subMenu3.addItem("&middot; Phase I","ps_ld_phase1.html");
		//subMenu3.addItem("&middot; Phase II","ps_ld_phase2.html");
		//subMenu3.addItem("&middot; Phase III","ps_ld_phase3.html");

		//var subMenu3 = menu3.addMenu(menu3.items[1]);
		//subMenu3.addItem("&middot; Overview","ps_sp_overview.html");
		//subMenu3.addItem("&middot; Phase I","ps_sp_phase1.html");
		//subMenu3.addItem("&middot; Phase II","ps_sp_phase2.html");
		
		//var subMenu3 = menu3.addMenu(menu3.items[2]);
		//subMenu3.addItem("&middot; Overview","ps_ch_overview.html");
		//subMenu3.addItem("&middot; Personal", "ps_ch_personal.html");
		//subMenu3.addItem("&middot; Professional", "ps_ch_pro.html");
		
		//var subMenu3 = menu3.addMenu(menu3.items[4]);
		//subMenu3.addItem("&middot; Overview","ps_cl_overview.html");
		//subMenu3.addItem("&middot; Management Retreats", "ps_cl_retreats.html");
		//subMenu3.addItem("&middot; Leadership Programs", "ps_cl_pro.html");
		//subMenu3.addItem("&middot; Customized Seminars", "ps_cl_seminars.html");
		//subMenu3.addItem("&middot; Strategic Planning", "ps_cl_planning.html");
	
		
		//OUR CLIENTS==================================================================================================

		/*var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("&middot; Video Testimonials","oc_video.html");*/

		
		//OUR CLIENTS==================================================================================================
		
		/*var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("&middot; Video","mr_video.html");
		menu5.addItem("&middot; Podcasts","mr_podcasts.php");

		// submenu
		var subMenu5 = menu5.addMenu(menu5.items[1]);
		subMenu5.addItem("&middot; Leadership Secrets","mr_pc_secrets.html");*/

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