/* -------------------------------------------------------------------------- */
/*
   (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 = "Wireless MAXg Router User Guide";
var strModel = "5465";
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("Introduction",	"index.html");
	dropdown.addItem("Fonctions",	"features.html");
	dropdown.addItem("Garantie",	"warranty.html");
	dropdown.addItem("Informations légales",	"regulatory.html");
	dropdown.addItem("Copyright",	"copyright.html");



	/*
		Installation
	*/
	var dropdown = bar.addDropdown("Installation", 21);
	dropdown.addItem("Installation du routeur",	"install.html");
	dropdown.addItem("Installation de l'imprimante",	"printer.html");
	dropdown.addItem("Connexion de périphériques sans fil",	"connect_wireless.html");



	/*
		Configuration
	*/
	var dropdown = bar.addDropdown("Configuration", 19);
	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 */
