/* -------------------------------------------------------------------------- */
/*
   (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("Inicio", 12);
	dropdown.addItem("Introducción",	"index.html");
	dropdown.addItem("Características",	"features.html");
	dropdown.addItem("Garantía",	"warranty.html");
	dropdown.addItem("Información normativa",	"regulatory.html");
	dropdown.addItem("Copyright",	"copyright.html");



	/*
		Installation
	*/
	var dropdown = bar.addDropdown("Instalación", 15);
	dropdown.addItem("Instalación del módem",	"install.html");
	dropdown.addItem("Desinstalación del módem",	"uninstall.html");

	/*
		ICN Internet Call Notification
		***PLEASE MAKE MENU TRANSLATIONS FOR THIS SECTION BILINGUAL***
	*/

	var dropdown = bar.addDropdown("ICN", 35);
	dropdown.addItem("Internet Call Notification (Notificación de llamadas en Internet)",	"icn1.html");
	dropdown.addItem("Starting ICN (Inicio de ICN)",	"icn2.html");
	dropdown.addItem("Using ICN (Uso de ICN)",	"icn3.html");
	dropdown.addItem("ICN FAQ (Preguntas frecuentes sobre ICN)",	"icn5.html");

	
	/*
		Technical Reference
	*/
	var dropdown = bar.addDropdown("Referencia", 29);
	dropdown.addItem("Uso de comandos",	"tech-ref.html");
	dropdown.addItem("Comandos básicos para la transmisión de datos",	"tech-ref.html#basic");
	dropdown.addItem("Comandos ampliados para la transmisión de datos",	"tech-ref.html#extended");
	dropdown.addItem("Registros S",	"tech-ref.html#sreg");
	dropdown.addItem("Registros en mapa de bits",	"tech-ref.html#bit");


	/*
		Help
	*/
	var dropdown = bar.addDropdown("Ayuda", 13);
	dropdown.addItem("Solución de problemas",	"troubleshooting.html");
	dropdown.addItem("Glosario",	"gloss.html");
	dropdown.addItem("Asistencia técnica",	"support.html");
	
	
/* ----TRANSLATION END */	
	
	return bar;
}

