
	if (TransMenu.isSupported()) {

		var ms = new TransMenuSet(TransMenu.direction.down, 1, 0, TransMenu.reference.bottomLeft);

		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("Adventure Consulting", "adventure-consulting.html"); 
		menu1.addItem("Links of Interest", "links.html");  
		menu1.addItem("Other Locations", "other-locations.html");  

		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Zipline Canopy Tour", "tours.html"); 
		menu2.addItem("Safari Tours", "safari.html"); 
		menu2.addItem("Flavors of Jamaica", "flavors.html"); 
		menu2.addItem("Schedules and Pricing", "schedule-prices.html"); 
		menu2.addItem("Photos and Video", "gallery.html"); 
		
			
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("Directions & Transportation", "directions.html"); 
		menu3.addItem("Restrictions", "restrictions.html"); 
		menu3.addItem("FAQs", "faq.html"); 
		menu3.addItem("Cancellation Policy", "cancellation.html"); 
		menu3.addItem("Important Info for Cruise Ship Guests", "cruise.html"); 
		
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Special Occasions", "special-occasions.html");
		menu4.addItem("Large Groups", "large-groups.html");
		
		var menu7 = ms.addMenu(document.getElementById("menu7"));
		menu7.addItem("Join Our Team", "team.html");
		menu7.addItem("E-News Signup", "e-news.html");

		TransMenu.renderAll();
	}
