/* -------------------------------------------------------------------------- */
/*
   (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 = "Wireless MAXg Router User Guide";
var strModel = "5465";
var strProductName = "Wireless <i><b>N</b>d<sub>1</sub></i> Router";
var strProgName = " ";


function createMenu()
{
	var bar = new MenuBar(10);

	/*
		Home
	*/
	var dropdown = bar.addDropdown("Home", 15);
	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("Router Installation",	"install.html");
	dropdown.addItem("Printer Installation",	"printer.html");
	dropdown.addItem("Connect Wireless Devices",	"connect_wireless.html");



	/*
		Configuration
	*/
	var dropdown = bar.addDropdown("Configuration", 16);
	dropdown.addItem("Router Configuration Pages",	"wui.html");
	dropdown.addItem("Status",	"status.html");
	dropdown.addItem("Log",	"log.html");
	dropdown.addItem("Internet",	"internet.html");
	dropdown.addItem("Security",	"security.html");
	dropdown.addItem("Firewall",	"firewall.html");
	dropdown.addItem("Wireless",	"wireless.html");
	dropdown.addItem("LAN",	"lan.html");
	dropdown.addItem("Device",	"device.html");

	
	/*
		Tutorials
	*/
	var dropdown = bar.addDropdown("Tutorials", 15);
	dropdown.addItem("Using your Router",	"tutorials.html");
	dropdown.addItem("Parental Control Settings",	"tutorials.html#firewall");


	/*
		Help
	*/
	var dropdown = bar.addDropdown("Help", 13);
	dropdown.addItem("Troubleshooting",	"troubleshooting.html");
	dropdown.addItem("FAQs",	"faq.html");
	dropdown.addItem("Support",	"support.html");
	
	return bar;
}

/* ----TRANSLATION END */