/* -------------------------------------------------------------------------- */
/*
   (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 */	


function createMenu()
{
	var bar = new MenuBar(10);

	/*
		Home
	*/
	var dropdown = bar.addDropdown("Accueil", 12);
	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", 18);
	dropdown.addItem("Installation du Faxmodem",	"install.html");
	dropdown.addItem("Désinstallation du FaxModem",	"uninstall.html");

	/*
		ICN Internet Call Notification
		***PLEASE MAKE MENU TRANSLATIONS FOR THIS SECTION BILINGUAL***
	*/

	var dropdown = bar.addDropdown("ICN", 18);
	dropdown.addItem("Internet Call Notification",	"icn1.html");
	dropdown.addItem("Starting ICN (Démarrage d'ICN)",	"icn2.html");
	dropdown.addItem("Using ICN (Utilisation d'ICN)",	"icn3.html");
	dropdown.addItem("ICN FAQ (FAQ sur ICN)",	"icn5.html");

	
	/*
		Technical Reference
	*/
	var dropdown = bar.addDropdown("Références", 20);
	dropdown.addItem("Utilisation des commandes",	"tech-ref.html");
	dropdown.addItem("Commandes de données de base",	"tech-ref.html#basic");
	dropdown.addItem("Commandes de données étendues",	"tech-ref.html#extended");
	dropdown.addItem("Registres S",	"tech-ref.html#sreg");
	dropdown.addItem("Registres adressables par bits",	"tech-ref.html#bit");


	/*
		Help
	*/
	var dropdown = bar.addDropdown("Aide", 10);
	dropdown.addItem("Dépannage",	"troubleshooting.html");
	dropdown.addItem("Glossaire",	"gloss.html");
	dropdown.addItem("Assistance",	"support.html");
	
	
/* ----TRANSLATION END */	
	
	return bar;
}

