/* -------------------------------------------------------------------------- */
/*
   (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(16);

	/*
		Home
	*/
	var dropdown = bar.addDropdown("Página inicial", 12);
	dropdown.addItem("Introdução",	"index.html");
	dropdown.addItem("Características",	"features.html");
	dropdown.addItem("Garantia",	"warranty.html");
	dropdown.addItem("Regulamentos",	"regulatory.html");
	dropdown.addItem("Copyright",	"copyright.html");



	/*
		Installation
	*/
	var dropdown = bar.addDropdown("Instalação", 15);
	dropdown.addItem("Instalação do modem",	"install.html");
	dropdown.addItem("Desinstalação do modem",	"uninstall.html");

	/*
		ICN Internet Call Notification
		***PLEASE MAKE MENU TRANSLATIONS FOR THIS SECTION BILINGUAL***
	*/

	var dropdown = bar.addDropdown("ICN", 36);
	dropdown.addItem("Internet Call Notification (Notificação de chamadas de Internet)",	"icn1.html");
	dropdown.addItem("Iniciar a ICN",	"icn2.html");
	dropdown.addItem("Utilizar a ICN",	"icn3.html");
	dropdown.addItem("P&R - ICN ",	"icn5.html");

	
	/*
		Technical Reference
	*/
	var dropdown = bar.addDropdown("Material de referência", 20);
	dropdown.addItem("Utilizar comandos",	"tech-ref.html");
	dropdown.addItem("Comandos de dados básicos",	"tech-ref.html#basic");
	dropdown.addItem("Comandos de dados prolongados",	"tech-ref.html#extended");
	dropdown.addItem("Registos S",	"tech-ref.html#sreg");
	dropdown.addItem("Registos com mapeamento de bits",	"tech-ref.html#bit");


	/*
		Help
	*/
	var dropdown = bar.addDropdown("Ajuda", 14);
	dropdown.addItem("Resolução de problemas",	"troubleshooting.html");
	dropdown.addItem("Glossário",	"gloss.html");
	dropdown.addItem("Suporte",	"support.html");
	
	
/* ----TRANSLATION END */	
	
	return bar;
}

