/* -------------------------------------------------------------------------- */
/*
   (c) 2004-2007 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 Access Point User Guide";
var strModel = "5455";
var strProductName = "Wireless MAXg Access Point";
var strProgName = " ";


function createMenu()
{
	var bar = new MenuBar(10);

	/*
		Home
	*/
	var dropdown = bar.addDropdown("Home", 10);
	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", 17);
	dropdown.addItem("Installing the Access Point",					"install.html");
	dropdown.addItem("Connecting a Wireless Device",				"client_connect.html");
	
	/*
		Configuration
	*/
	var dropdown = bar.addDropdown("Configuration", 16);
	dropdown.addItem("Configuration Page Access",			"config.html");
	dropdown.addItem("Status Page",							"status.html");
	dropdown.addItem("Security Page",						"security.html");
	dropdown.addItem("Wireless Page",						"wireless.html");
	dropdown.addItem("LAN Page",							"lan.html");
	dropdown.addItem("Device Page",							"device.html");

	/*
		Tutorial
	*/
	var dropdown = bar.addDropdown("Tutorial", 24);
	dropdown.addItem("Set Wireless Security Using Windows Vista",	"install_wps.html");

	/*
		Help
	*/
	var dropdown = bar.addDropdown("Help", 10);
	dropdown.addItem("Troubleshooting",	"troubleshooting.html");
	dropdown.addItem("FAQs",			"faq.html");
	dropdown.addItem("Support",			"support.html");
	
	return bar;
}

/* ----TRANSLATION END */
