/* -------------------------------------------------------------------------- */
/*
   (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 "USB Telephone Adapter" 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 = "USB Telephone Adapter User Guide";


// N.B.: All filenames must be in lowercase here.

var menuHome = new Array(
									new MenuItem("index.html",				"Introduction",		"Introduction to the adapter"),
									new MenuItem("features.html",			"Features",			"Features of the adapter"),
									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(
									new MenuItem("install.html",			"Installing the USB Telephone Adapter",	"Information on installing the USB Telephone Adapter features"),
									new MenuItem("status.html",				"Status & Testing",	"USB Telephone Adapter Status"),
									new MenuItem("uninstall.html",			"Unplugging/Uninstalling",	"Information on unplugging or uninstalling the USB Telephone Adapter")

								);


var menuUtility = new Array(
									new MenuItem("config.html",				"General Settings",	"Information on configuring general settings for the USB Telephone Adapter"),
									new MenuItem("ivr.html",				"Interactive Voice Response",	"Information on IVR"),
									new MenuItem("configcfwd.html",			"Call Forwarding",	"Information on configuring Call Forwarding"),
									new MenuItem("configtbyp.html",			"Toll Bypass",		"Information on configuring Toll Bypass"),
									new MenuItem("configvm.html",			"Voicemail",		"Information on configuring Voicemail")

								);

var menuTutorials = new Array(
									new MenuItem("make.html",				"Making Calls",		"Information on making calls"),
									new MenuItem("receive.html",			"Receiving Calls",	"Information on receiving calls"),
									new MenuItem("scenarios.html",			"Calling Scenarios",		"Information on calling scenarios"),
									new MenuItem("callwait.html",			"Call Waiting",		"Information on using call waiting"),
									new MenuItem("callconf.html",			"Call Conferencing",		"Information on using call conferencing"),
									new MenuItem("tollbyp.html",			"Toll Bypass",		"Information on using Toll Bypass"),
									new MenuItem("voicemail.html",			"Voicemail",		"Information on using Voicemail")
								);

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",				"Home",				"View product information",			menuHome),
									new MenuItem("install.html",			"Installation",		"How to install the USB Telephone Adapter",		menuInstall),
									new MenuItem("config.html",				"Configuration",	"How to configure the USB Telephone Adapter",		menuUtility),
									new MenuItem("make.html",			"Tutorials",		"How to use the USB Telephone Adapter",		menuTutorials),
									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.
*/

