/* -------------------------------------------------------------------------- */
/*
   (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 = "USR5635 User Guide";


function createMenu()
{
	var bar = new MenuBar(10);

	/*
		Home
	*/
	var dropdown = bar.addDropdown("Home", 15);
	dropdown.addItem("Introduction",	"index.html");
	dropdown.addItem("Specifications",	"features.html");
	dropdown.addItem("Warranty",	"warranty.html");
	dropdown.addItem("Garantie",	"warranty_fre.html");
	dropdown.addItem("Regulatory",	"regulatory.html");
	dropdown.addItem("Informations légales",	"regulatory_fre.html");
	dropdown.addItem("Copyright",	"copyright.html");



	/*
		Installation
	*/
	var dropdown = bar.addDropdown("Installation", 15);
	dropdown.addItem("Faxmodem Installation",	"install.html");
	dropdown.addItem("Faxmodem Uninstallation",	"uninstall.html");

	/*
		ICN
	*/
	var dropdown = bar.addDropdown("ICN", 15);
	dropdown.addItem("Internet Call Notification",	"icn1.html");
	dropdown.addItem("Starting ICN",	"icn2.html");
	dropdown.addItem("Using ICN",	"icn3.html");
	dropdown.addItem("ICN FAQ",	"icn5.html");

	
	/*
		Technical Reference
	*/
	var dropdown = bar.addDropdown("Reference", 15);
	dropdown.addItem("Typing Commands",	"tech-ref.html");
	dropdown.addItem("Basic Data Commands",	"tech-ref.html#basic");
	dropdown.addItem("Extended Data Commands",	"tech-ref.html#extended");
	dropdown.addItem("S-Registers",	"tech-ref.html#sreg");
	dropdown.addItem("Fax Commands",	"tech-ref.html#fax");
	dropdown.addItem("Screen Messages",	"tech-ref.html#screen");


	/*
		Help
	*/
	var dropdown = bar.addDropdown("Help", 15);
	dropdown.addItem("Troubleshooting",	"troubleshooting.html");
	dropdown.addItem("Glossary",	"gloss.html");
	dropdown.addItem("Support",	"support.html");

/* --------------------------------------------------------------------------
	TRASNLATION END
	
*/

	return bar;
}

