if (TransMenu.isSupported()) {
	// 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.

	//==================================================================================================
	// 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, 0, 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("about"));
	menu1.addItem("Press Releases", "http://www.sourcetech.com/press-releases.asp");
	menu1.addItem("In The News", "http://www.sourcetech.com/in-the-news.asp"); 
	menu1.addItem("Case Studies", "http://www.sourcetech.com/case-studies.asp"); 
	menu1.addItem("White Papers", "http://www.sourcetech.com/white-papers.asp");
	menu1.addItem("Our Customers", "http://www.sourcetech.com/our-customers.asp"); 
	menu1.addItem("ISO Certification", "http://www.sourcetech.com/iso-certification.asp"); 
	menu1.addItem("Upcoming Events", "http://www.sourcetech.com/events.asp"); 
 

	//=================================================================================================    

	//==================================================================================================
	var menu2 = ms.addMenu(document.getElementById("solutions"));
	menu2.addItem("Banking", "http://www.sourcetech.com/industry-solutions/banking.asp");
	menu2.addItem("Securities", "http://www.sourcetech.com/industry-solutions/securities.asp");	
	menu2.addItem("Insurance", "http://www.sourcetech.com/industry-solutions/Insurance.asp");
	menu2.addItem("Retail", "http://www.sourcetech.com/industry-solutions/retail.asp");
	menu2.addItem("Government", "http://www.sourcetech.com/industry-solutions/Government.asp");


	//==================================================================================================

	//==================================================================================================
	var menu3 = ms.addMenu(document.getElementById("products"));
	menu3.addItem("MICR and Secure Printing", "http://www.sourcetech.com/printers/MICR-printers/micr-printers-overview.asp");
	menu3.addItem("Secure Print Software", "http://www.sourcetech.com/printers/Software/software.asp");
	menu3.addItem("MICR Toner", "http://www.sourcetech.com/printers/micr-toner/micr-toner.asp");
	menu3.addItem("Transactional Self-Service", "http://www.sourcetech.com/kiosks/Transactional-Kiosks/transactional-kiosks.asp");
	menu3.addItem("Interactive Self-Service", "http://www.sourcetech.com/kiosks/Interactive-Kiosks/interactive-kiosks.asp");


	//==================================================================================================

	//==================================================================================================
	var menu4 = ms.addMenu(document.getElementById("partners"));

	menu4.addItem("Overview", "http://www.sourcetech.com/partner-center.asp");
	menu4.addItem("Partner Login", "http://www.sourcetech.com/st-login.asp");

	//==================================================================================================

	//==================================================================================================
	var menu5 = ms.addMenu(document.getElementById("customers"));
	menu5.addItem("Technical Support", "http://www.sourcetech.com/support/tech_support.asp");
	menu5.addItem("End of Life", "http://www.sourcetech.com/support/eol.asp");
	menu5.addItem("Printer Drivers", "http://www.sourcetech.com/support/drivers.asp");
	menu5.addItem("Printer Manuals", "http://www.sourcetech.com/support/manuals.asp");
	menu5.addItem("MSDS Sheets", "http://www.sourcetech.com/support/msds.asp");
	menu5.addItem("Toner Recycling", "http://www.sourcetech.com/support/toner_recycling.asp");
	menu5.addItem("Support Call Procedure", "http://www.sourcetech.com/support/call_procedure.asp");
	menu5.addItem("WEEE Compliance", "http://www.sourcetech.com/kiosk_recycling.asp");	
menu5.addItem("Terms & Conditions", "http://www.sourcetech.com/support/terms_and_conditions.asp");
		
	
	//==================================================================================================

//==================================================================================================
	var menu6 = ms.addMenu(document.getElementById("contact"));
	menu6.addItem("Become A Reseller", "http://www.sourcetech.com/st_resellerApplication.asp");
	menu6.addItem("Join Our Mailing List", "http://www.sourcetech.com/SubscriptionSign-Up.asp");
	menu6.addItem("Directions", "http://www.mapquest.com/cgi-bin/ia_free?width=500&height=400&level=6&city=Charlotte&state=NC&streetaddress=2910 Whitehall Park Drive");
	menu6.addItem("Address", "http://www.sourcetech.com/address.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();
}