//%---------------------------------------------------------------------------
// Menu
var menuCount=5;
var menus = new Array( menuCount );
menus[0] = new tbMenu( "Leistungen", "#", 145 ); // ../services/services.html
menus[0].addItem( "&Uuml;bersetzungen", "../services/translation.html" );
menus[0].addItem( "Fach&uuml;bersetzungen", "../services/t_translation.html" );
menus[0].addItem( "Lektorat und Redaktion", "../services/proofreading.html" );
menus[0].addItem( "Desktop Publishing", "../services/dtp.html" );
menus[0].addItem( "Softwarelokalisierung", "../services/sw_localisation.html" );
menus[0].addItem( "Weblokalisierung", "../services/web_localisation.html" );
menus[0].addItem( "Web Development", "../services/web_development.html" );
menus[0].addItem( "Eventmarketing", "../services/event_marketing.html" );
// menus[0].addItem( "Dubbing", "../services/dubbing.html" );

menus[1] = new tbMenu( "Fachgebiete", "#", 200 ); // ../fields/fields.html
menus[1].addItem( "Marketing &amp; Werbung", "../fields/marketing_advertising.html" );
menus[1].addItem( "Wirtschaft &amp; Finanzen", "../fields/economy_finance.html" );
// menus[1].addItem( "Bankwesen &amp; Finanzen", "../fields/banking_financial.html" );
menus[1].addItem( "IT &amp; Kommunikationstechnologie", "../fields/it_communication_tec.html" );
menus[1].addItem( "Baumpflege &amp Botanik", "../fields/treework_botan.html" );

menus[2] = new tbMenu( "Arbeitsweise", "#", 125 ); // ../how_we_work/how_we_work.html
menus[2].addItem( "Ressourcen", "../how_we_work/resources.html" );
menus[2].addItem( "Projektablauf", "../how_we_work/translation_proc.html" );
menus[2].addItem( "Sicherheit", "../how_we_work/security.html" );

menus[3] = new tbMenu( "Ihr Projekt", "#", 100 ); // ../your_project/your_project.html
menus[3].addItem( "Unser Angebot", "../your_project/free_estimate.html" );
menus[3].addItem( "Ihr Beitrag", "../your_project/your_part.html" );
menus[3].addItem( "Preise", "../your_project/rates_and_fees.html" );
menus[3].addItem( "AGB", "../your_project/terms.html" );

menus[4] = new tbMenu( "&Uuml;ber uns", "#", 155 ); // ../about_us/about_us.html
menus[4].addItem( "Studium und Abschl&uuml;sse", "../about_us/about_us.html" );
menus[4].addItem( "Projekte", "../about_us/projects.html" );
menus[4].addItem( "Partner", "../about_us/partners.html" );
menus[4].addItem( "Kontakt", "../about_us/contact.php" );

var imprint = "Impressum";

/*
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( "Interkulturalit&auml;t", "../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_on.gif";
         imgref = null;
         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_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>" );
   }
}
