/* -------------------------------------------------------------------------- */
/*
   (c) 2004-2007 U.S. Robotics Corporation.
*/
/* -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------

	These represent the various menus. There is a main menu bar and some sub-menus.
	All strings except for file names (ending in .html) should be translated.
*/


function createMenu()
{
	var bar = new MenuBar(11);
/*
	*** TRANSLATION START -->
*/
	/*
		Home
	*/
	var dropdown = bar.addDropdown("Home", 10, "index.html");
	dropdown.addItem("Introduction",	"index.html");
	dropdown.addItem("Features",		"features.html");
	dropdown.addItem("Warranty",		"warranty.html");
	dropdown.addItem("Regulatory",		"regulatory.html");
	dropdown.addItem("Copyright",		"copyright.html");


	/*
		Installation
	*/
	var dropdown = bar.addDropdown("Installation", 14);
	dropdown.addItem("Installation",			"installation.html");
	dropdown.addItem("Connecting to a Network",	"config_connect.html");
	dropdown.addItem("Uninstallation",			"uninstallation.html");
	

	/*
		Configuration
	*/
	var dropdown = bar.addDropdown("Configuration", 18);
	dropdown.addItem("Advanced Properties",					"adv_props.html");
	dropdown.addItem("The USRobotics Wireless Utility",		"utility.html");
	

	/*
		Help
	*/
	var dropdown = bar.addDropdown("Help", 10);
	dropdown.addItem("Troubleshooting",	"troubleshooting.html");
	dropdown.addItem("FAQs",			"faq.html");
	dropdown.addItem("Glossary",		"glossary.html");
	dropdown.addItem("Support",			"support.html");
	
	return bar;
}
/*
	<-- TRANSLATION END ***
*/

