$(document).ready(function() {
  if($('#standort_karte').length==1){
    var postcode = $('.vcard').find('.postal-code').text();
    var hcard = $('.vcard p.card');
//    var map = new VEMap('standort_karte');
    var taxoterm = 1; // Anwaelte
    var lang = 'de';
    var anw_text;
    var dl_pdf;
    // show javascript stuff
    $('#h_anwaelte_standort').show();
    $('#t_anwaelte_standort').show();
    $('#standort_karte').width('555px');

//    map.SetDashboardSize(VEDashboardSize.Small);
//    map.LoadMap();

    if($('body').hasClass('i18n-de')) {
      $('#h_anwaelte_standort').html('Liste der Anw&auml;lte');
      anw_text = 'Liste der Anw&auml;lte';
      lang='de';
    }else {
      $('#h_anwaelte_standort').html('List of Attorneys');
      anw_text = 'List of Attorneys';
      lang='en';
    }

    switch(postcode)  {
      case '28217':
        if(lang=='de') {
          $('#t_anwaelte_standort').load( '/de/anwaelte/Bremen/list' + '#col3_content .view-content');
          dl_pdf = '../../files/orte/Eisenfuhr_Anfahrt_HB_de.pdf';
        }
        else {
          $('#t_anwaelte_standort').load( '/en/anwaelte/Bremen/list' + '#col3_content .view-content');
          dl_pdf = '../../files/orte/Eisenfuhr_Anfahrt_HB_en.pdf';
        }
        break;
      case '80335':
  
        if(lang=='de') {
          $('#t_anwaelte_standort').load( '/de/anwaelte/Muenchen/list' + '#col3_content .view-content');
           dl_pdf = '../../files/orte/Eisenfuhr_Anfahrt_Muenchen_de.pdf';
        }
        else {
          $('#t_anwaelte_standort').load( '/en/anwaelte/Munich/list' + '#col3_content .view-content');
             dl_pdf = '../../files/orte/Eisenfuhr_Anfahrt_Muenchen_en.pdf';
        }
        break;
      case '10178':
            if(lang=='de') {
          $('#t_anwaelte_standort').load( '/de/anwaelte/Berlin/list' + '#col3_content .view-content');
          dl_pdf = '../../files/orte/Eisenfuhr_Anfahrt_BLN_de.pdf';
        }
        else {
          $('#t_anwaelte_standort').load( '/en/anwaelte/Berlin/list' + '#col3_content .view-content');
           dl_pdf = '../../files/orte/Eisenfuhr_Anfahrt_BLN_en.pdf';
        }
        break;

      case '20355':
          dl_pdf = '../../files/orte/Eisenfuhr_Anfahrt_HH.pdf';
        // Anwaelte Hamburg
        if(lang=='de') {
          $('#t_anwaelte_standort').load( '/de/anwaelte/Hamburg/list' + '#col3_content .view-content');
          dl_pdf = '../../files/orte/Eisenfuhr_Anfahrt_HH_de.pdf';
        }
        else {
          $('#t_anwaelte_standort').load( '/en/anwaelte/Hamburg/list' + '#col3_content .view-content');
          dl_pdf = '../../files/orte/Eisenfuhr_Anfahrt_HH_en.pdf';
        }
        break;
    } // end of switch
    $('<ul id="standort_links"></ul>').css({
      'position':'absolute',
      'top':'25px',
      'left':'534px'
    }).appendTo('#standorte_head');

    // create List Menu Standorte
    $('#standort_info h3').each(function(e) {
      var cl =  $(this).attr('id');
      if(cl=='anreise_ovpn') {
        if(lang=='de')
          $('<li class="'+cl+'" ><a href="#'+cl+'">Anreise mit ÖPNV</a></li>').appendTo('#standort_links');
        else
          $('<li class="'+cl+'" ><a href="#'+cl+'">'+$(this).html()+'</a></li>').appendTo('#standort_links');
      } else {
        $('<li class="'+cl+'" ><a href="#'+cl+'">'+$(this).html()+'</a></li>').appendTo('#standort_links');
      }
    });
  }
});
