
// 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()) {

	var ms = new TransMenuSet(TransMenu.direction.down, -17, 7, TransMenu.reference.bottomLeft);

	var menu1 = ms.addMenu(document.getElementById("navMenu2"));
	menu1.addItem("Websites", "/gallery.asp");
	menu1.addItem("Logos", "/logogallery.asp");	
	menu1.addItem("Print Material", "/printgallery.asp");	

	var menu2 = ms.addMenu(document.getElementById("navMenu3"));
	menu2.addItem("Website Development", "/websitedevelopment.asp");
	menu2.addItem("Website Maintenance", "/websitemaintenance.asp");	
	menu2.addItem("Content Management", "/contentmanagement.asp");		
	menu2.addItem("Website Hosting", "/websitehosting.asp");	
	menu2.addItem("Website Monitoring", "/websitemonitoring.asp");	
	menu2.addItem("Graphic Design", "/graphicdesign.asp");	
	menu2.addItem("Printing Services", "/printingservices.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();
}
