//%---------------------------------------------------------------------------
// Menu
var menuCount=5;
var menus = new Array( menuCount );
menus[0] = new tbMenu( "Services", "#", 145 ); // ../services/services.html
menus[0].addItem( "Translation", "../services/translation.html" );
menus[0].addItem( "Technical translation", "../services/t_translation.html" );
menus[0].addItem( "Text review", "../services/proofreading.html" );
menus[0].addItem( "Desktop Publishing", "../services/dtp.html" );
menus[0].addItem( "Software localisation", "../services/sw_localisation.html" );
menus[0].addItem( "Web localisation", "../services/web_localisation.html" );
menus[0].addItem( "Web development", "../services/web_development.html" );
menus[0].addItem( "Event marketing", "../services/event_marketing.html" );
// menus[0].addItem( "Dubbing", "../services/dubbing.html" );

menus[1] = new tbMenu( "Specialist areas", "#", 160 ); // ../fields/fields.html
menus[1].addItem( "Marketing &amp; Advertising", "../fields/marketing_advertising.html" );
menus[1].addItem( "Economy &amp; Finance", "../fields/economy_finance.html" );
/*
menus[1].addItem( "Banking &amp; Financial", "../fields/banking_financial.html" );
*/
menus[1].addItem( "IT &amp; Communications", "../fields/it_communication_tec.html" );
menus[1].addItem( "Treework &amp; Botany", "../fields/treework_botan.html" );

menus[2] = new tbMenu( "How we work", "#", 125 ); // ../how_we_work/how_we_work.html
menus[2].addItem( "Resources", "../how_we_work/resources.html" );
menus[2].addItem( "Translation process", "../how_we_work/translation_proc.html" );
menus[2].addItem( "Security", "../how_we_work/security.html" );

menus[3] = new tbMenu( "Your project", "#", 100 ); // ../your_project/your_project.html
menus[3].addItem( "Estimate", "../your_project/free_estimate.html" );
menus[3].addItem( "Your part", "../your_project/your_part.html" );
menus[3].addItem( "Rates", "../your_project/rates_and_fees.html" );
menus[3].addItem( "Terms", "../your_project/terms.html" );

menus[4] = new tbMenu( "About us", "#", 155 ); // ../about_us/about_us.html
menus[4].addItem( "Education &amp; Qualifications", "../about_us/about_us.html" );
menus[4].addItem( "Projects", "../about_us/projects.html" );
menus[4].addItem( "Partners", "../about_us/partners.html" );
menus[4].addItem( "Contact", "../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_on.gif";
         imgref = null;
         break;
      case "fr":
         imgwidth = 54;
         img = "../../img/lang_francais_off.gif";
         break;
      case "es":
         imgwidth = 52;
         img = "../../img/lang_espagnol_off.gif";
         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>" );
   }
}