/* -------------------------------------------------------------------------- */
/*
   (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 PC Card and PCI 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 = "Guía del usuario del Wireless <i>MAX<\/i>g USB Adapter";

// N.B.: All filenames must be in lowercase here.

var menuHome = new Array(
									new MenuItem("index.html",					"Introducción",	"Introducción al USB Adapter"),
									new MenuItem("features.html",				"Características",			"Características del USB Adapter"),
									new MenuItem("warranty.html",				"Garantía",			"Garantía limitada"),
									new MenuItem("regulatory.html",			"Información normativa",		"Información normativa")
								);

var menuInstall = new Array(
									new MenuItem("install-usb-rtr.html",			"USB Adapter/Router",		"Instalación del USB Adapter y del router"),
									new MenuItem("install-usb.html",			"USB Adapter",			"Instalación del USB Adapter")
									
								);


var menuUtility = new Array(
									
									new MenuItem("connection.html",			"Conexión inalámbrica",	"Información sobre la página Status (Estado) del USB Adapter"),
									new MenuItem("utility.html",				"Información sobre la utilidad",					"Información sobre la página Log (Registro) del USB Adapter")
								);

var menuHelp = new Array(
									new MenuItem("troubleshooting.html",	"Solución de problemas",	"Ayuda a la hora de resolver problemas"),
									new MenuItem("faq.html",					"Preguntas más frecuentes",					"Respuesta a las consultas más habituales"),
									new MenuItem("support.html",				"Servicio al cliente",				"Asistencia técnica")
								);

var menuMain = new Array(
									new MenuItem("index.html",					"Inicio",							"Información general del producto",			menuHome),
									new MenuItem("installation.html",			"Instalación",				"Instalación del USB Adapter",		menuInstall),
									new MenuItem("connection.html",			"Utilidad de configuración",	"Configuración del USB Adapter",		menuUtility),
									new MenuItem("troubleshooting.html",	"Ayuda",							"Solución de problemas y preguntas más frecuentes",		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.
*/
