/* -------------------------------------------------------------------------- */
/*
   (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.
*/

var strTitle = "Guide de l'utilisateur du Wireless Ndx PC Card et PCI Adapter ";
var strModel = "5412 and 5419";
var strProductName = "Wireless <strong><em>N</em></strong>dx PC Card et PCI Adapter";
var strProgName = " ";


function createMenu()
{
	var bar = new MenuBar(10);

	/*
		Home
	*/
	var dropdown = bar.addDropdown("Accueil", 13);
	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", 13);
	dropdown.addItem("Carte PC",	"pc-install.html");
	dropdown.addItem("Adaptateur PCI",	"pci-install.html");

	/*
		Configuration
	*/
	var dropdown = bar.addDropdown("Configuration", 23);
	dropdown.addItem("Ouverture de l'utilitaire de configuration", "utilityintro.html");
	dropdown.addItem("Connexion à un réseau",	"connection.html");
	dropdown.addItem("Présentation de l'utilitaire",	"utility.html");
	/*dropdown.addItem("Assistant SecureEasySetup",	"wizard.html");

		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;
}
