/* -------------------------------------------------------------------------- */
/*
   (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 <i>MAX<\/i>g Template" 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 Range Extender User Guide";


// N.B.: All filenames must be in lowercase here.

var menuHome = new Array(
									new MenuItem("index.html",				"Introduction",		"Introduction to the Range Extender"),
									new MenuItem("features.html",			"Features",			"Features of the Range Extender"),
									new MenuItem("warranty.html",			"Warranty",			"The limited warranty"),
									new MenuItem("copyright.html",			"Copyright",		"Copyright information"),
									new MenuItem("regulatory.html",			"Regulatory",		"Regulatory information")
								);

var menuInstall = new Array(
										);


var menuUtility = new Array(
									new MenuItem("wui.html",				"Login",			"Information on configuring the Range Extender"),
									new MenuItem("status.html",				"Status",			"Information on Range Extender's Status page"),
									new MenuItem("security.html",			"Security",			"Information on Range Extender's Security page"),
									new MenuItem("wireless.html",			"Wireless",			"Information on Range Extender's Wireless page"),
									new MenuItem("lan.html",				"LAN",				"Information on Range Extender's LAN page"),
									new MenuItem("device.html",				"Device",			"Information on Range Extender's Device page")
								);

var menuHelp = new Array(
									new MenuItem("troubleshooting.html",	"Troubleshooting",	"Information on solving problems"),
									new MenuItem("support.html",			"Support",			"Technical support")
								);

var menuMain = new Array(
									new MenuItem("index.html",				"Home",				"View product information",			menuHome),
									new MenuItem("install.html",			"Installation",		"How to install the Range Extender",		menuInstall),
									new MenuItem("wui.html",				"Configuration",	"How to configure the Range Extender",		menuUtility),
									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.
*/

