/* -------------------------------------------------------------------------- */
/*
   (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(13);
/*
	*** TRANSLATION START -->
*/
	/*
		Home
	*/
	var dropdown = bar.addDropdown("Home<br>&nbsp", 13, "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<br>&nbsp", 13);
	dropdown.addItem("Installation",	"installation.html");
	dropdown.addItem("Uninstallation",	"uninstallation.html");
	

	/*
		Configuration
	*/
	var dropdown = bar.addDropdown("Configuration<br>&nbsp", 13);
	dropdown.addItem("Overview",				"config_overview.html");
	dropdown.addItem("Default Values",			"defaults.html");
	dropdown.addItem("Configuration Utility",	"config_cu.html");
	dropdown.addItem("Web User Interface",		"config_wui.html");

		/*
		WUI Reference
		Please make these menu items bilingual. Each is the title of a firmware page.
	*/
	var dropdown = bar.addDropdown("Web User Interface<br>Reference", 20);
	dropdown.addItem("Port Setting",						"wui_reference.html#port");
	dropdown.addItem("IEEE 802.1Q VLAN Setting",			"wui_reference.html#vlan");
	dropdown.addItem("Trunk Setting",						"wui_reference.html#trunking");
	dropdown.addItem("Mirror Setting",						"wui_reference.html#mirror");
	dropdown.addItem("IEEE 802.1p Default Priority",		"wui_reference.html#priority");
	dropdown.addItem("PoE",									"wui_reference.html#priority");
	dropdown.addItem("Broadcast Storm Control Setting",		"wui_reference.html#priority");
	dropdown.addItem("Jumbo Frame Setting",					"wui_reference.html#jumbo");
	dropdown.addItem("System Information",					"wui_reference.html#sysinfo");
	dropdown.addItem("System Setting",						"wui_reference.html#system");
	dropdown.addItem("Trap Setting",						"wui_reference.html#trap");
	dropdown.addItem("Password Setting",					"wui_reference.html#password");
	dropdown.addItem("Statistics",							"wui_reference.html#statistics");
	dropdown.addItem("Factory Reset",						"wui_reference.html#reset");
	dropdown.addItem("Backup Setting",						"wui_reference.html#backup");
	dropdown.addItem("Firmware Upload",						"wui_reference.html#firmware");
	dropdown.addItem("System Reboot",						"wui_reference.html#reboot");
	
	/*
		Help
	*/
	var dropdown = bar.addDropdown("Help<br>&nbsp", 13);
	dropdown.addItem("Troubleshooting",	"help_troubleshooting.html");
	dropdown.addItem("FAQs",			"faq.html");
	dropdown.addItem("Support",			"help_support.html");
	
	return bar;
}
/*
	<-- TRANSLATION END ***
*/

