/* -------------------------------------------------------------------------- */
/*
   (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 "Broadband Router with USB Print Server" 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 = "Broadband Router with USB Print Server&mdash;User Guide";

// N.B.: All filenames must be in lowercase here.

var menuHome = new Array(
									new MenuItem("warranty.html",				"Warranty",			"The limited warranty"),
									new MenuItem("regulatory.html",				"Regulatory",		"Regulatory information")
								);

var menuInstall = new Array(
									new MenuItem("broadband.html",				"Broadband&nbsp;Modem",			"How to install the router"),
									new MenuItem("analog_isdn.html",			"Analogue&nbsp;or&nbsp;ISDN&nbsp;Modem",	"How to install the router"),
									new MenuItem("printer.html",				"Printer",					"How to install a network USB printer")
								);


var menuConfig = new Array(
									new MenuItem("configuration.html",			"Why&nbsp;Reconfigure?",		"Reasons to reconfigure the router"),
									new MenuItem("login.html",					"Log&nbsp;in",				"Launch and login instructions"),
									new MenuItem("status.html",					"Status",				"Information on router's Status page"),
									new MenuItem("basic_setting.html",			"Basic&nbsp;Setting",		"Information on router's Basic Setting page"),
									new MenuItem("forwarding_rules.html",		"Forwarding&nbsp;Rules",		"Information on router's Forwarding Rules page"),
									new MenuItem("security_setting.html",		"Security&nbsp;Setting",		"Information on router's Security Setting page"),
									new MenuItem("advanced_setting.html",		"Advanced&nbsp;Setting",		"Information on router's Advanced Setting page"),
									new MenuItem("toolbox.html",				"Toolbox",				"Information on router's Toolbox page")
								);

var menuHelp = new Array(
									new MenuItem("troubleshooting.html",		"Troubleshooting",		"Information on solving problems"),
									new MenuItem("faq.html",					"FAQs",					"Frequently-asked questions"),
									new MenuItem("support.html",				"Support",				"Technical support")
								);

var menuMain = new Array(
									new MenuItem("index.html",					"Introduction",			"View product information",			menuHome),
									new MenuItem("broadband.html",				"Installation",			"How to install the router",		menuInstall),
									new MenuItem("configuration.html",			"Configuration",		"How to configure the router",		menuConfig),
									new MenuItem("troubleshooting.html",		"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.
*/
