/* -------------------------------------------------------------------------- */
/*
   (c) 2004-2006 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(10);
/*
	*** TRANSLATION START -->
*/
	/*
		Home
	*/
	var dropdown = bar.addDropdown("Home", 13, "index.html");
	dropdown.addItem("Introduction",	"index.html");
	dropdown.addItem("Warranty",		"warranty.html");
	dropdown.addItem("Regulatory",		"regulatory.html");
	dropdown.addItem("Copyright",		"copyright.html");

	/*
		Installation
	*/
	var dropdown = bar.addDropdown("Installation", 13);
	dropdown.addItem("Installation",	"installation.html");
	dropdown.addItem("Uninstallation",	"uninstallation.html");
	

	/*
		Configuration
	*/
	var dropdown = bar.addDropdown("Configuration", 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
	*/
	var dropdown = bar.addDropdown("Web User Interface", 13);
	dropdown.addItem("Port",			"wui_reference.html#port");
	dropdown.addItem("VLAN",			"wui_reference.html#vlan");
	dropdown.addItem("Trunking",		"wui_reference.html#trunking");
	dropdown.addItem("Mirror",			"wui_reference.html#mirror");
	dropdown.addItem("PoE",				"wui_reference.html#poe");
	dropdown.addItem("Status",			"wui_reference.html#status");
	dropdown.addItem("Statistics",		"wui_reference.html#statistics");
	dropdown.addItem("System",			"wui_reference.html#system");
	dropdown.addItem("Trap",			"wui_reference.html#trap");
	dropdown.addItem("Password",		"wui_reference.html#password");
	dropdown.addItem("Backup Setting",	"wui_reference.html#backup_setting");
	dropdown.addItem("Reset Setting",	"wui_reference.html#reset_setting");

	
	/*
		Help
	*/
	var dropdown = bar.addDropdown("Help", 13);
	dropdown.addItem("Tutorials",		"tut_trunking.html");
	dropdown.addItem("Troubleshooting",	"help_troubleshooting.html");
	dropdown.addItem("FAQs",				"faq.html");
	dropdown.addItem("Support",			"help_support.html");
	
	return bar;
}
/*
	<-- TRANSLATION END ***
*/
