/* -------------------------------------------------------------------------- */
/*
   (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 = "Guida utente di Wireless <i>MAX<\/i>g Access Point";

// N.B.: All filenames must be in lowercase here.

var menuHome = new Array(
									new MenuItem("index.html",					"Introduzione",	"Introduzione ad Access Point"),
									new MenuItem("features.html",				"Caratteristiche",			"Caratteristiche di Access Point"),
									new MenuItem("warranty.html",				"Garanzia",			"Garanzia limitata"),
									new MenuItem("regulatory.html",			"Conformitą",		"Informazioni di conformitą")
								);


var menuUtility = new Array(
									
									new MenuItem("status.html",			"Status",	"Informazioni sulla pagina Status di Access Point"),
									new MenuItem("log.html",			"Log",	"Informazioni sulla pagina Log di Access Point"),
									new MenuItem("security.html",			"Security",	"Informazioni sulla pagina Security di Access Point"),
									new MenuItem("wireless.html",			"Wireless",	"Informazioni sulla pagina Wireless di Access Point"),
									new MenuItem("lan.html",			"LAN",	"Informazioni sulla pagina LAN di Access Point"),
									new MenuItem("device.html",			"Device",	"Informazioni sulla pagina Device di Access Point")
								);

var menuHelp = new Array(
									new MenuItem("troubleshooting.html",	"Risoluzione di problemi",	"Informazioni sulla risoluzione di problemi"),
									new MenuItem("faq.html",					"FAQ",					"Domande frequenti"),
									new MenuItem("support.html",				"Servizio assistenza",				"Supporto tecnico")
								);

var menuMain = new Array(
									new MenuItem("index.html",					"Home",							"Visualizzazione delle informazioni sul prodotto",			menuHome),
									new MenuItem("install.html",			"Installazione",				"Installazione di Access Point"),
									new MenuItem("wui.html",			"Interfaccia utente Web",	"Configurazione di Access Point",		menuUtility),
									new MenuItem("troubleshooting.html",	"Guida",							"Suggerimenti per la risoluzione di problemi e FAQ",		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.
*/

