
	// 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, 1, 0, TransMenu.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		
		
		
		// Company   ========================================================================================
		var menu1 = ms.addMenu(document.getElementById("Company"));
		menu1.addItem("About Us", "about.asp");
		menu1.addItem("Hosting Services", "hosting.asp"); // send no URL if nothing should happen onclick
		//menu1.addItem("Fun at the Frog", "#");
		menu1.addItem("Privacy Policy", "privacy_policy.asp");
		menu1.addItem("Contact Us", "contact.asp");
		//==================================================================================================

		// Products   ========================================================================================
		var menu2 = ms.addMenu(document.getElementById("Services", ""));
		menu2.addItem("Infrastructure Service", "infrastructure.asp");
		menu2.addItem("Small/Medium Business", "backup_disaster.asp");
		menu2.addItem("Home  Office/Residential", "#");

		var submenu0 = menu2.addMenu(menu2.items[0]);
		submenu0.addItem("Server Services", "infrastructure.asp");
		// submenu0.addItem("Application Services", "application.asp");
		submenu0.addItem("Disaster Recovery Services", "disaster_recovery.asp");
		submenu0.addItem("Infrastructure Consulting and Assessments","infrastructure_consulting.asp");
		// submenu0.addItem("Software Development", "software_development.asp");
		submenu0.addItem("Network Management", "network_management.asp");
		submenu0.addItem("IT Staffing", "it_staffing.asp");
		submenu0.addItem("Storage Solutions", "storage_solutions.asp");
		submenu0.addItem("IT Security Management", "it_security_management.asp");
		
		var submenu1 = menu2.addMenu(menu2.items[1]);
		submenu1.addItem("Backup and Disaster Recovery Services", "backup_disaster.asp");
		submenu1.addItem("Server and Network Management", "server_network.asp");
		submenu1.addItem("Website Design and Hosting", "website.asp");
		submenu1.addItem("Managed Services", "managed_services.asp");

		
	  /* var submenu2 = menu2.addMenu(menu2.items[2]);
		submenu2.addItem("Email Notification Module", "email_notification.html");
		submenu2.addItem("XML Archive Module", "#");
		submenu2.addItem("Constrictor Module", "#");
		submenu2.addItem("Chameleon Module", "chameleon.html");
		submenu2.addItem("Legacy XML Conversion Tool", "");
		
	 */
		
		var submenu2 = menu2.addMenu(menu2.items[2]);
		submenu2.addItem("Home/Home Office", "home_office.asp");
		// submenu2.addItem("Technology Services", "technology.asp");

		//==================================================================================================

		// MENU 3   ========================================================================================
		
		var menu3 = ms.addMenu(document.getElementById("Products", "#"));
		menu3.addItem("Online Store" , "http://www.nextdaypc.com/main/default.aspx?&rsmainid=ND0166224");
		//menu3.addItem("future" , "future.asp");

		//==================================================================================================

		// MENU 4   ========================================================================================
		var menu4 = ms.addMenu(document.getElementById("Staffing Solutions", "#"));
		menu4.addItem("Domestic Staffing", "it_staffing.asp");
		menu4.addItem("International Jobs", "international_job.asp");

		//==================================================================================================

		// MENU 5  ========================================================================================
		var menu5 = ms.addMenu(document.getElementById("Partners", "#"));
		//menu5.addItem("Alliances", "alliances.asp");
		menu5.addItem("Technology Partners", "technology_partners.asp");
		//menu5.addItem("Become a Partner", "partner.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();
	}

