/* -------------------------------------------------------------------------- */
/*
   (c) 2004-2005 U.S. Robotics Corporation.
*/
/* -------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------

	Define the information for a single menu item (both main bar and sub-menu).
	Each menu item has an associated filename, title, and description.
	The title and description are translated, but not the filename.

*/

function MenuItem(strFilename, strTitle, strDescription, menuSub)
{
	this.strFilename = strFilename;
	this.strTitle = strTitle;
	this.strDescription = strDescription;
	this.menuSub = menuSub;
}


/* --------------------------------------------------------------------------

	These represent the various menus. There is a main menu bar and some sub-menus.

	The second and third strings in each item need to be translated.
	The first string is a filename and does not need to be translated.

	This is the only section that contains text to be translated.

	The tag below must not be modified. It is used by
	Translation to extract the text to be translated.
	*** TRANSLATION START -->
*/

/*
	The value of this variable is the title of each page, output by the script below.
	The product name "Wireless MAXg ADSL Gateway" is not translated,
	but the text "User Guide" is, and the arrangement of that text
	can be changed to suit the target language's grammar.
*/
var strTitle = "Wireless <i>MAX</i>g ADSL Gateway User Guide";

// N.B.: All filenames must be in lowercase here.

// IMPORTANT NOTE: In each of these array declarations, the last (non-commented) entry MUST NOT
// be followed by a comma. If the last one has a comma, none of the menus display.

var menuHome = new Array(
									new MenuItem("index.htm",				"Introduction",		"Introduction to the gateway"),
									new MenuItem("features.htm",			"Features",			"Features of the gateway"),
									new MenuItem("warranty.htm",			"Warranty",			"The limited warranty"),
									new MenuItem("copyright.htm",			"Copyright",		"Copyright information"),
									new MenuItem("regulatory.htm",			"Regulatory",		"Regulatory information")
								);

var menuInstall = new Array(
									new MenuItem("install.htm",				"Gateway",			"Device installation procedure"),
									new MenuItem("install_printer.htm",		"Printer",			"Installing and sharing a printer"),
									new MenuItem("connections.htm",			"Rear",				"Cable connections"),
									new MenuItem("leds.htm",				"Front",			"Descriptions of the LEDs")
								);

var menuEasyCfg = new Array(
									new MenuItem("upgrade.htm",				"Upgrade",			"How to upgrade EasyConfigurator"),
									new MenuItem("password.htm",			"Password",			"How to change account passwords"),
									new MenuItem("uninstal.htm",			"Uninstall",		"How to uninstall EasyConfigurator")
								);

var menuWUI = new Array(
									new MenuItem("wui_login.htm",			"Login",			"How to log in to the Web user interface"),
									new MenuItem("quicksetup.htm",			"QuickSetup",		"Setting up the device"),
									new MenuItem("wui_status.htm",			"Status",			"Information on the gateway status pages"),
									new MenuItem("wui_internet.htm",		"Internet",			"Information on the Internet settings"),
									new MenuItem("wui_lan.htm",				"LAN",				"Information on the local network settings"),
									new MenuItem("wui_wireless.htm",		"Wireless",			"Information on the wireless communications settings"),
									new MenuItem("wui_security.htm",		"Security",			"Information on the security settings"),
									new MenuItem("wui_device.htm",			"Device",			"Information on the device settings"),
									new MenuItem("appendix.htm",			"Appendix",			"NAPT information")
								);

var menuHelp = new Array(
									new MenuItem("tutorials.htm",			"Tutorials",		"How to accomplish your goals"),
									new MenuItem("trouble.htm",				"Troubleshooting",	"Information on solving problems"),
									new MenuItem("support.htm",				"Support",			"Technical support"),
									new MenuItem("glossary.htm",			"Glossary",			"Term definitions")
								);

var menuMain = new Array(
									new MenuItem("index.htm",				"Home",					"View product information",				menuHome),
									new MenuItem("install.htm",				"Installation",			"How to install the gateway",			menuInstall),
									new MenuItem("upgrade.htm",				"EasyConfigurator",		"Using the EasyConfigurator utility",	menuEasyCfg),
									new MenuItem("wui_login.htm",			"Web User Interface",	"Using the Web user interface",			menuWUI),
									new MenuItem("tutorials.htm",			"Help",					"Troubleshooting tips and FAQs",		menuHelp)
								);

/*
	<-- TRANSLATION END ***
	Nothing after this needs to be translated.
	The above tag must not be modified. It is used by
	Translation to extract the text to be translated.
*/
