/* -------------------------------------------------------------------------- */
/*
   (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("Home", 12);
	dropdown.addItem("Introduction",	"index.html");
	dropdown.addItem("Features",	"features.html");
	dropdown.addItem("Warranty",	"warranty.html");
	dropdown.addItem("Regulatory",	"regulatory.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 Internet Call Notification
		***PLEASE MAKE MENU TRANSLATIONS FOR THIS SECTION BILINGUAL***
	*/

	var dropdown = bar.addDropdown("ICN", 14);
	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("Using 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("Bit-Mapped Registers",	"tech-ref.html#bit");


	/*
		Help
	*/
	var dropdown = bar.addDropdown("Help", 10);
	dropdown.addItem("Troubleshooting",	"troubleshooting.html");
	dropdown.addItem("Glossary",	"gloss.html");
	dropdown.addItem("Support",	"support.html");
	
	
/* ----TRANSLATION END */	
	
	return bar;
}

