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, -5, 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("menu1"));
//		menu1.addItem("Overview", "/company/index.php");
//		menu1.addItem("History", "/company/history.php");
//		menu1.addItem("Services", "/company/services.php");
//		menu1.addItem("Publishing", "/company/publishing.php");
//		menu1.addItem("Recording", "/company/recording.php");
//		menu1.addItem("Distribution", "/company/distribution.php");
//		menu1.addItem("Team", "/company/team.php");
//		menu1.addItem("Join Street Team", "/company/street_team.php");
//		
//		var submenu1 = menu1.addMenu(menu1.items[2]);
//		
//		submenu1.addItem("Talent Agent/Booking", "/company/booking.php");
//		submenu1.addItem("Event Management", "/company/event.php");
//		submenu1.addItem("Scoring/Music Supervision", "/company/scoring.php");
//		submenu1.addItem("Scouting", "/company/scouting.php");
//		submenu1.addItem("Consulting", "/company/consulting.php");
//		submenu1.addItem("Advertising/Media Buying", "/company/advertising.php");
//		submenu1.addItem("Sports Management", "/company/sports.php");
		//==================================================================================================

		//==================================================================================================
//		var menu2 = ms.addMenu(document.getElementById("menu2"));
//		menu2.addItem("Search Firearms", "/search/sgsearch.asp");
//		menu2.addItem("Product Browsing", "");
//		menu2.addItem("Where to Buy", "/html/products/wheretobuy.asp");
//		menu2.addItem("Register Your Warranty", "/ProductRegistration/Register/Step1.asp");
//		
//		var submenu1 = menu2.addMenu(menu2.items[1]);
//												 
//		submenu1.addItem("Firearms", "/html/products/firearms/firearms.asp");
//		submenu1.addItem("Accessories", "/html/products/accessories/accessories.asp");
//		submenu1.addItem("Apparel", "/html/products/apparel/apparel.asp");
//		submenu1.addItem("Gifts", "/html/products/gifts/gifts.asp");
		//==================================================================================================

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("Testimonials", "/testimonials.asp");
		menu3.addItem("Daly Stories", "/dalystories.asp");
		menu3.addItem("Catalog Request", "/catalog.asp");
		menu3.addItem("Owner's Manuals", "/manualreq.asp");
//		menu3.addItem("Charles Daly Print Ads", "print_ads.asp");
//		menu3.addItem("eNewsletter Archives", "newsletter_archive.asp");
		menu3.addItem("Computer Wallpaper", "/wallpaper.asp");
		//==================================================================================================

		//==================================================================================================
//		var menu4 = ms.addMenu(document.getElementById("menu4"));
//		menu4.addItem("What's New", "whatsnew.asp");
//		menu4.addItem("Events", "events.asp");
		//==================================================================================================

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Charles Daly Forums", "http://www.charlesdalyforum.com");
		menu4.addItem("Safety", "/tipsafety.asp");
		menu4.addItem("FAQs", "/faq.asp");
		menu4.addItem("Warranty &amp; Lifetime Repair Policy", "/warranty.asp");
		menu4.addItem("Cleaning Your Semi-Auto Shotgun (PDF)", "/pdf/SmoothAsSilk/SmoothAsSilk.pdf");
		menu4.addItem("Owner's Manuals", "/manualreq.asp");
		//==================================================================================================
		
		//==================================================================================================
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("Industry Links", "/links_industry.asp");
		menu5.addItem("Organization Links", "/links_organization.asp");
		menu5.addItem("Government Links", "/links_government.asp");
		menu5.addItem("Recommended Links", "/links_recommended.asp");
		//==================================================================================================
		
		//==================================================================================================
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("About Us", "/about.asp");
		menu6.addItem("Contact Us", "/contact.asp");
		menu6.addItem("Employment", "/employment.asp");
		//==================================================================================================
		// 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();
	}