	if (TransMenu.isSupported()) {

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


		//var menu1 = ms.addMenu(document.getElementById("Home1"));
		//menu1.addItem("VeloTek Racing", "index.php?page=home"); 
		//menu1.addItem("VeloTek Coaching", "index.php?page=coaching"); // send no URL if nothing should happen onclick

// notes about the code
		var menu1 = ms.addMenu(document.getElementById("Home"));
		menu1.addItem("OFFICERS AND COMMITTEES", "officers.html");
		menu1.addItem("VISION, PURPOSE AND MISSION", "mission.html");
		menu1.addItem("MEETING SCHEDULE", "meetingschedule.html");
		menu1.addItem("NEWSLETTER", "newsletter.html");
		menu1.addItem("ADVERTISE WITH US", "advertise.html");
		menu1.addItem("10 STEP PROGRAM TO REMODELING", "10step.html");
		menu1.addItem("NARI NATIONAL SITE", "http://www.nari.org");
		
		var menu2 = ms.addMenu(document.getElementById("BuyersGuide"));
		menu2.addItem("TIPS FOR HIRING A CONTRACTOR", "tipsforhiring.html");
		menu2.addItem("CONTRACTORS", "contractors.html");
		menu2.addItem("DESIGN RESOURCES", "designresources.html");
		menu2.addItem("SPECIALTY CONTRACTORS", "specialtycontractors.html");
		menu2.addItem("PRODUCT SUPPLIERS", "productsuppliers.html");
		menu2.addItem("BASEMENTS", "basements.html");
		menu2.addItem("KITCHENS", "kitchens.html");
		menu2.addItem("BATHROOMS", "bathrooms.html");
		menu2.addItem("ROOM ADDITIONS", "roomadditions.html");
		menu2.addItem("EXTERIOR SPECIALTY", "exteriorspecialty.html");
		menu2.addItem("BUSINESS PARTNERS", "businesspartners.html");

		var menu3 = ms.addMenu(document.getElementById("Members"));
		menu3.addItem("CONTRACTORS", "contractor_list.php");
		menu3.addItem("SUPPLIERS", "supplier_list.php");
		menu3.addItem("CERTIFIED MEMBERS", "certifiedmembers.html");
		menu3.addItem("AWARD WINNERS", "awardwinners.html");

		TransMenu.renderAll();
	}