// 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
		
		
		//==================================================================================================
		// About ChemOutsourcing
		var menu1 = ms.addMenu(document.getElementById("topmenu1"));
		menu1.addItem("About Pharma & Biotech CI 2008", "benefits.php"); 
		menu1.addItem("2007 List of Attendees", "who_attends.php"); // send no URL if nothing should happen onclick
		//menu1.addItem("Advisory Board", "advisory_board.php"); // send no URL if nothing should happen onclick
		menu1.addItem("2007 Show Photos", "photos_2007.php"); // send no URL if nothing should happen onclick
		menu1.addItem("Attendee Comments", "comments.php"); // send no URL if nothing should happen onclick
		menu1.addItem("Why Must I Attend", "why_attend.php"); // send no URL if nothing should happen onclick
		menu1.addItem("2008 Venue Information", "hotel.php");
		//menu1.addItem("Attendee Demographics", "attendee_demographics.htm");
		
		
		//==================================================================================================
		//  2007 Conference
		//var menu2 = ms.addMenu(document.getElementById("topmenu2"));
		//menu2.addItem("Speaker List", "speakers_2007.htm");
		//menu2.addItem("Conference Program", "2007_agenda.htm");
		//menu2.addItem("Advisory Board", "advisory_board.htm");
		//menu2.addItem("Workshop: WARGAMING", "workshop.htm");
		//menu2.addItem("Speaker Application 2007", "speakers_app_2007.htm");
		//menu2.addItem("Become a Media Partner", "media_partner.htm");
		
		//menu2.addItem("Rx CI Job Postings", "conferenceplus.htm");
		
		//var submenu2_0 = menu2.addMenu(menu2.items[0]);
		//submenu2_0.addItem("Track 1 TBA", "");
		//submenu2_0.addItem("Track 2 TBA", "");
		//submenu2_0.addItem("Track 3 TBA", "");
		//submenu2_0.addItem("Track 4 TBA", "");
		//submenu2_0.addItem("Track 5 TBA", "");
		//submenu2_0.addItem("Track 6 TBA", "");
		//submenu2_0.addItem("Track 7 TBA", "");
		
		//var submenu2_1 = menu2.addMenu(menu2.items[3]);
		//submenu2_1.addItem("Attendee Testimonials", "");
		//submenu2_1.addItem("Attendee List", "");
		
		//var submenu2_3 = menu2.addMenu(menu2.items[4]);
		//submenu2_3.addItem("Become a 2007 Conference Sponsor", "sponsor_app_2007.htm");
		//submenu2_3.addItem("Become a 2007 Conference Exhibitor", "exhibitor_app_2007.htm");
		//submenu2_3.addItem("Current 2007 Sponsor & Exhibitor List", "#");
		//submenu2_3.addItem("Sponsor & Exhibitor Testimonials", "#");
	

		//==================================================================================================
		// Sponsors & Exhibitors
		var menu2 = ms.addMenu(document.getElementById("topmenu2"));
		menu2.addItem("2007 Exhibitor List", "sponsors_2007.php");
		menu2.addItem("Become a Sponsor", "sponsor_app_2008.php");
		menu2.addItem("Become an Exhibitor", "exhibitor_app_2008.php");
		//menu3.addItem("Exhibition Logistics", "logistics.htm");
		
		//var submenu3_0 = menu3.addMenu(menu3.items[0]);
		//submenu3_0.addItem("Contact", "");
		//submenu3_0.addItem("Attendee List", "");
		
		//var submenu3_1 = menu3.addMenu(menu3.items[1]);
		//submenu3_1.addItem("Sponsor & Exhibitor Testimonials", "");
		//submenu3_1.addItem("Sponsor & Exhibitor List", "");

		
		//==================================================================================================
        // About Us
		var menu3 = ms.addMenu(document.getElementById("topmenu3"));
		menu3.addItem("Contact Us", "contactus.php");
		menu3.addItem("Executive Management Team", "about_team.php");
		
		//var submenu4_3 = menu4.addMenu(menu4.items[3]);
		//submenu4_3.addItem("To Post Openings contact info@rxpharmamarketing.com", "");
		
		//==================================================================================================
		// 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();
	}