/* -------------------------------------------------------------------------- */
/*
   (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 Router";
var strModel = "5464";
var strProductName = "Wireless <i><b>N</b>d<sub>1</sub></i> Router";
var strProgName = " ";


function createMenu()
{
	var bar = new MenuBar(10);

	/*
		Home
	*/
	var dropdown = bar.addDropdown("Accueil", 15);
	dropdown.addItem("Présentation",	"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", 16);
	dropdown.addItem("Installation du routeur",	"install.html");
	dropdown.addItem("Installation de l'imprimante",	"printer.html");

	/*
		Configuration
	*/
	var dropdown = bar.addDropdown("Configuration", 20);
	dropdown.addItem("SecureEasySetup",	"config_ses.html");
	dropdown.addItem("Pages de configuration du routeur",	"wui.html");
	dropdown.addItem("Statut",	"status.html");
	dropdown.addItem("Journal",	"log.html");
	dropdown.addItem("Internet",	"internet.html");
	dropdown.addItem("Sécurité",	"security.html");
	dropdown.addItem("Pare-feu",	"firewall.html");
	dropdown.addItem("Sans fil",	"wireless.html");
	dropdown.addItem("LAN",	"lan.html");
	dropdown.addItem("Périphérique",	"device.html");
	
	/*
		Tutorials
	*/
	var dropdown = bar.addDropdown("Didacticiels", 18);
	dropdown.addItem("Utilisation de votre routeur",	"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 */
