/* -------------------------------------------------------------------------- */
/*
   (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 = "Guide de l'utilisateur du 56K PCI Faxmodem";


// N.B.: All filenames must be in lowercase here.


var menuInstall = new Array(
									new MenuItem("install.html",			"Installation",			"Comment installer le modem"),
									new MenuItem("uninstall.html",			"Désinstallation",		"Comment désinstaller le modem")
								);


var menuHelp = new Array(
									new MenuItem("trouble.html",	"Dépannage",				"Comment configurer le routeur"),
									new MenuItem("support.html",			"Assistance",				"Comment obtenir de l'aide"),
									new MenuItem("glossary.html",			"Glossaire",				"Glossaire")
								);

var menuHome = new Array(
									new MenuItem("index.html",				"Bienvenue",				"La technologie 56K"),
									new MenuItem("features.html",			"Caractéristiques",				"Caractéristiques du produit"),
									new MenuItem("regulatory.html",			"Informations légales et sur la garantie",				"Informations légales et sur la garantie")
								);
var menuMain = new Array(
									new MenuItem("index.html",				"Accueil",					"Informations sur le produit",		menuHome),
									new MenuItem("install.html",			"Installation",			"Comment installer le modem",	menuInstall),
									new MenuItem("technical.html",			"Références techniques (English)",	"Références sur la ligne de commande"),
									new MenuItem("trouble.html",			"Aide",				    "Dépannage et assistance",	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.
*/

