	// 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, 7, 13, 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("The McIntire Advantage", "/about-us/mcintire-advantage.asp"); 
		menu1.addItem("Ways We've Helped Other Businesses", "/about-us/ways-weve-helped.asp"); 
		menu1.addItem("Depth of Expertise", "/about-us/depth-expertise.asp"); 
		menu1.addItem("Overview of Products & Services", "/about-us/overview.asp"); 
		menu1.addItem("Manufacturers We Represent", "/about-us/represent.asp"); 
		menu1.addItem("Our Clients", "/about-us/our-clients.asp");
		menu1.addItem("Testimonials", "/about-us/testimonials.asp");
		menu1.addItem("Meet the Staff", "/about-us/meet-the-staff.asp");
		menu1.addItem("Careers", "/about-us/careers.asp");
		menu1.addItem("Contact Us", "/contact-us/default.asp");


		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Marketers & Presenters", "/solutions/marketers-presenters.asp"); 
		menu2.addItem("Large Businesses", "/solutions/large-businesses.asp");
		menu2.addItem("Small to Medium Businesses", "/solutions/small-medium-businesses.asp");
		menu2.addItem("Home and Home Office", "/solutions/home-office.asp");
		menu2.addItem("Educators", "/solutions/educators.asp");
		menu2.addItem("Print Shops, Copy Shops, & In Plants", "/solutions/print-copy.asp");
		menu2.addItem("View by Business Need", "/solutions/view-business-need.asp");
		menu2.addItem("View by Product Category", "/products/default.asp");
		
<!-- LEVEL 1 -->		
		
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("Binding Equipment", "/products/binding-equipment.asp");
		menu3.addItem("Cutters / Trimmers", "/products/cutters-trimmers.asp");
		menu3.addItem("Laminators", "/products/laminators.asp");
		menu3.addItem("Paper Handling/Finishing Products", "/products/paper-handling.asp");
		menu3.addItem("Shredders", "/products/shredders.asp");
		menu3.addItem("Shrinkwrap", "/products/shrinkwrap.asp");
		menu3.addItem("Supplies", "/products/supplies.asp");

<!-- end LEVEL 1 -->	

<!-- LEVEL 2 Ref back to Binding Equipment -->	

		var submenu0 = menu3.addMenu(menu3.items[0]);
		submenu0.addItem("All-In-One, Coil", "/products/all_in_one_coil.asp");
		submenu0.addItem("All-In-One, Comb", "/products/all_in_one_comb.asp");
		submenu0.addItem("All-In-One, Strip", "/products/all_in_one_strip.asp");
		submenu0.addItem("All-In-One, Wire", "/products/all_in_one_wire.asp");	
		submenu0.addItem("Finishers, Automatic", "/products/finishers_automatic.asp");
		submenu0.addItem("Finishers, Coil", "/products/finishers_coil.asp");
		submenu0.addItem("Finishers, Comb", "/products/finishers_comb.asp");				
		submenu0.addItem("Finishers, Strip", "/products/finishers_strip.asp");
		submenu0.addItem("Finishers, Wire", "/products/finishers_wire.asp");			
		submenu0.addItem("Punches, Automatic", "/products/punches_automatic.asp");
		submenu0.addItem("Punches", "/products/punches.asp");	
		submenu0.addItem("Photo Books", "/products/photobooks.asp");
		submenu0.addItem("Thermal Binding", "/products/thermal_binding.asp");					
							
		
<!-- End LEVEL 2 Ref back to Binding Equipment -->			

<!-- Begin LEVEL 2 Ref back to Cutters / Trimmers -->	

		var submenu1 = menu3.addMenu(menu3.items[1]);
		
		submenu1.addItem("Cutters", "/products/cutters.asp");
		submenu1.addItem("Trimmers", "/products/trimmers.asp");
		submenu1.addItem("Substrate Trimmers", "/products/substrate_trimmers.asp");
		
<!-- End LEVEL 2 Ref back to Cutters / Trimmers -->	

<!-- Begin LEVEL 2 Ref back to Laminators -->			
		
		var submenu2 = menu3.addMenu(menu3.items[2]);
		submenu2.addItem("Automatic", "/products/laminators_automatic.asp");
		submenu2.addItem("Pouch", "/products/laminators_pouch.asp");
		submenu2.addItem("Roll", "/products/laminators_roll.asp");
		submenu2.addItem("UV Coaters", "/products/uv_coaters.asp");
		
<!-- End LEVEL 2 Ref back to Laminators -->

<!-- Begin LEVEL 2 Ref back to Paper Handling -->					
		
		var submenu3 = menu3.addMenu(menu3.items[3]);
		submenu3.addItem("Booklet Makers", "/products/booklet_makers.asp");
		submenu3.addItem("Business Card Slitters", "/products/business_card_slitters.asp");
		submenu3.addItem("Collators", "/products/collators.asp");
		submenu3.addItem("Corner Rounders", "/products/corner_rounders.asp");
		submenu3.addItem("Creasers", "/products/creasers.asp");
		submenu3.addItem("Drills / Accessories", "/products/drills.asp");
		submenu3.addItem("Folders", "/products/folders.asp");
		submenu3.addItem("Joggers", "/products/joggers.asp");
		submenu3.addItem("Letter Openers", "/products/letter_openers.asp");
		submenu3.addItem("Padders", "/products/padders.asp");
		submenu3.addItem("Perfer / Scorers", "/products/perfer_scorers.asp");
		submenu3.addItem("Staplers", "/products/staplers.asp");
		submenu3.addItem("Tabbers", "/products/tabbers.asp");

<!-- End LEVEL 2 Ref back to Paper Handling -->		

<!-- Begin Services tab -->			
						 
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Personalized Presentations & Custom Printing", "/services/personalized-printing.asp");
		menu4.addItem("On-site Service & Repair", "/services/on-site-services.asp");
		menu4.addItem("On-site Maintenance & Cleaning", "/services/on-site-maintenance.asp");
		menu4.addItem("On-site Training & Installation", "/services/training-installation.asp");
		
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("Design Professional Documents & Presentations", "/what-does-your-business-need/documents-presentations.asp");
		menu5.addItem("Add Impact to Presentations", "/what-does-your-business-need/impact-presentations.asp");
		menu5.addItem("Personalize Your Documents, Proposals, & Products", "/what-does-your-business-need/personalize.asp");
		menu5.addItem("Save Time Preparing Documents", "/what-does-your-business-need/save-time-preparing.asp");
		menu5.addItem("Grow Your Bottom Line", "/what-does-your-business-need/bottom-line.asp");
		menu5.addItem("Data Destruction", "/what-does-your-business-need/data-destruction.asp");
		menu5.addItem("Protect and Finish Oversized Color Prints", "/what-does-your-business-need/protect-finish.asp");
				
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("Request Reorder of Supplies", "/customer-service/request-a-reorder-of-supplies.asp");
		menu6.addItem("Request a Quote", "/customer-service/request-a-quote.asp");
		menu6.addItem("Request Product Literature", "/customer-service/request-product-literature.asp");
		menu6.addItem("Request a Product Demonstration", "/customer-service/request-a-product-demonstration.asp");
		menu6.addItem("Speak to a Representative", "/customer-service/speak-to-a-representative.asp");
		menu6.addItem("Request Copy of Instruction Manual", "/customer-service/request-copy-of-instruction-manual.asp");
		menu6.addItem("Request a Service Call", "/customer-service/request-a-service-call.asp");
		menu6.addItem("Have a Question About an Invoice?", "/customer-service/have-a-question-about-an-invoice.asp");
		menu6.addItem("Financing Options", "/customer-service/financing-options.asp");
		menu6.addItem("Service Contracts & Extended Warranties", "/customer-service/service-contracts.asp");
		
		

		//==================================================================================================

		//==================================================================================================

		TransMenu.renderAll();
	}
