/* -------------------------------------------------------------------------- */
/*
   (c) 2004-2006 U.S. Robotics Corporation.
*/
/* -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------

	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 */	


var strTitle = "Guide de l'utilisateur du Wireless Ndx Gateway";
var strModel = "9113";
var strProductName = "Wireless <strong><em>N</em></strong>dx Gateway";
var strProgName = " ";


function createMenu()
{
	var bar = new MenuBar(10);

	/*
		Home
	*/
	var dropdown = bar.addDropdown("Accueil", 15);
	dropdown.addItem("Introduction",	"index.html");
	dropdown.addItem("Caractéristiques",	"features.html");
	dropdown.addItem("Garantie",	"warranty.html");
	dropdown.addItem("Réglementation",	"regulatory.html");
	dropdown.addItem("Copyright",	"copyright.html");



	/*
		Installation
	*/
	var dropdown = bar.addDropdown("Installation", 20);
	dropdown.addItem("Installation de la passerelle",	"install.html");
	dropdown.addItem("Installation de l'imprimante",	"printer.html");

	/*
		Configuration
	*/
	var dropdown = bar.addDropdown("Configuration", 23);
	dropdown.addItem("SecureEasySetup",	"config_ses.html");
	dropdown.addItem("EasyConfigurator",	"easyconfig.html");
	dropdown.addItem("Pages de configuration de la passerelle",	"wui.html");
	dropdown.addItem("Status (Statut)",	"status.html");
	dropdown.addItem("Internet",	"internet.html");
	dropdown.addItem("LAN",	"lan.html");
	dropdown.addItem("Wireless (Sans fil)",	"wireless.html");
	dropdown.addItem("Security (Sécurité)",	"security.html");
	dropdown.addItem("Device (Périphérique)",	"device.html");
	
	/*
		Tutorials
	*/
	var dropdown = bar.addDropdown("Didacticiels", 18);
	dropdown.addItem("Utilisation de votre passerelle",	"tutorials.html");
	dropdown.addItem("Paramètres de contrôle parental",	"tutorials.html#firewall");


	/*
		Help
	*/
	var dropdown = bar.addDropdown("Aide", 13);
	dropdown.addItem("Dépannage",	"troubleshooting.html");
	dropdown.addItem("FAQ",	"faq.html");
	dropdown.addItem("Assistance",	"support.html");
	
	return bar;
}

/* ----TRANSLATION END */
