//%---------------------------------------------------------------------------
// Menu
var menuCount=5;
var menus = new Array( menuCount );
menus[0] = new tbMenu( "Servicios", "#", 160 ); // ../services/services.html
menus[0].addItem( "Traducci&oacute;n", "../services/translation.html" );
menus[0].addItem( "Traducci&oacute;n t&eacute;cnica", "../services/t_translation.html" );
menus[0].addItem( "Revisi&oacute;n de textos", "../services/proofreading.html" );
menus[0].addItem( "Desktop Publishing", "../services/dtp.html" );
menus[0].addItem( "Localizaci&oacute;n de software", "../services/sw_localisation.html" );
menus[0].addItem( "Localizaci&oacute;n de sitios web", "../services/web_localisation.html" );
menus[0].addItem( "Desarrollo de sitios web", "../services/web_development.html" );
menus[0].addItem( "Marketing de eventos", "../services/event_marketing.html" );
// menus[0].addItem( "Dubbing", "../services/dubbing.html" );

menus[1] = new tbMenu( "Areas", "#", 160 ); // ../fields/fields.html
menus[1].addItem( "Marketing &amp; Publicidad", "../fields/marketing_advertising.html" );
menus[1].addItem( "Econom&iacute;a &amp; Finanzas", "../fields/economy_finance.html" );
/*
menus[1].addItem( "Banca &amp; Finanzas", "../fields/banking_financial.html" );
*/
menus[1].addItem( "TI &amp; Comunicaciones", "../fields/it_communication_tec.html" );
menus[1].addItem( "Arboricultura &amp; Bot&agrave; nica", "../fields/treework_botan.html" );

menus[2] = new tbMenu( "Como trabajamos", "#", 140 ); // ../how_we_work/how_we_work.html
menus[2].addItem( "Herramientas", "../how_we_work/resources.html" );
menus[2].addItem( "Proceso de traducción", "../how_we_work/translation_proc.html" );
menus[2].addItem( "Seguridad", "../how_we_work/security.html" );

menus[3] = new tbMenu( "Su proyecto", "#", 150 ); // ../your_project/your_project.html
menus[3].addItem( "Presupuesto", "../your_project/free_estimate.html" );
menus[3].addItem( "Su contribuci&oacute;n", "../your_project/your_part.html" );
menus[3].addItem( "Tarifas", "../your_project/rates_and_fees.html" );
menus[3].addItem( "T&eacute;rminos y condiciones", "../your_project/terms.html" );

menus[4] = new tbMenu( "Sobre nosotros", "#", 155 ); // ../about_us/about_us.html
menus[4].addItem( "Formaci&oacute;n y experiencia", "../about_us/about_us.html" );
menus[4].addItem( "Proyectos", "../about_us/projects.html" );
menus[4].addItem( "Colaboradores", "../about_us/partners.html" );
menus[4].addItem( "Contacto", "../about_us/contact.php" );

/*
menus[5] = new tbMenu( "Items of interest", "../items_of_interest/items_of_interest.html", 110 );
menus[5].addItem( "Links", "../items_of_interest/links.html" );
menus[5].addItem( "Interculturality", "../items_of_interest/interculturality.html" );
*/
/*
menus[6] = new tbMenu( "Contact", "contact.html", 110 );
menus[6].addItem( "Contact", "contact.html" );
*/
//%---------------------------------------------------------------------------
function printLang( lang )
{
   img = "../../img/blank.gif";
   imgwidth = 0;
   imgref = "../../"+lang+"/"+thispath+"/"+thisfile;

   switch ( lang )
   {
      case "de":
         imgwidth = 53;
         img = "../../img/lang_deutsch_off.gif";
         break;
      case "en":
         imgwidth = 52;
         img = "../../img/lang_english_off.gif";
         break;
      case "fr":
         imgwidth = 54;
         img = "../../img/lang_francais_off.gif";
         break;
      case "es":
         imgwidth = 52;
         img = "../../img/lang_espagnol_on.gif";
         imgref = null;
         break;
   }

   if( imgref == null ) {
      document.write( "<img src=\""+img+"\" width=\""+imgwidth+"\" height=\"20\">" );
   } else {
      document.write( "<a href=\""+imgref+"\"><img src=\""+img+"\" width=\""+imgwidth+"\" height=\"20\" border=\"0\"></a>" );
   }
}