Drupal.locale = { 'pluralFormula': function ($n) { return Number(($n!=1)); }, 'strings': {"":{"An AJAX HTTP error occurred.":"Ein AJAX-HTTP-Fehler ist aufgetreten","HTTP Result Code: !status":"HTTP-R\u00fcckgabe-Code: !status","An AJAX HTTP request terminated abnormally.":"Eine AJAX-Anfrage ist abnormal beendet worden.","Debugging information follows.":"Im Folgenden finden Sie Debugging-Informationen.","Path: !uri":"Pfad: !uri","StatusText: !statusText":"Statustext: !statusText","ResponseText: !responseText":"Antworttext: !responseText","ReadyState: !readyState":"ReadyState: !readyState","Disabled":"Deaktiviert","Enabled":"Aktiviert","Edit":"Bearbeiten","Configure":"Konfigurieren","Done":"Schlie\u00dfen","Show":"Anzeigen","Select all rows in this table":"Alle Zeilen dieser Tabelle ausw\u00e4hlen","Deselect all rows in this table":"Alle Zeilen dieser Tabelle abw\u00e4hlen","Not published":"Nicht ver\u00f6ffentlicht","Hide":"Ausblenden","Loading":"Laden","By @name on @date":"Von @name am @date","By @name":"Von @name","Not in menu":"Nicht im Men\u00fc","Alias: @alias":"Alias: @alias","No alias":"Kein Alias","New revision":"Neue Version","Drag to re-order":"Ziehen um die Reihenfolge zu \u00e4ndern","Changes made in this table will not be saved until the form is submitted.":"\u00c4nderungen in dieser Tabelle werden nicht gespeichert, bis dieses Formular abgesendet wurde.","The changes to these blocks will not be saved until the \u003cem\u003eSave blocks\u003c\/em\u003e button is clicked.":"Die \u00c4nderungen an diesen Bl\u00f6cken werden nicht gespeichert, bis auf dem \u003cem\u003eBl\u00f6cke speichern\u003c\/em\u003e-Button geklickt wurde.","Show shortcuts":"Tastaturkombinationen anzeigen","This permission is inherited from the authenticated user role.":"Diese Berechtigung wird von der Rolle \u201aAuthentifizierte Benutzer\u2018 ererbt.","No revision":"Keine Version","@number comments per page":"@number Kommentare pro Seite","Not restricted":"Uneingeschr\u00e4nkt","(active tab)":"(aktiver Reiter)","Not customizable":"Nicht anpassbar","Restricted to certain pages":"Auf bestimmte Seiten eingeschr\u00e4nkt","The block cannot be placed in this region.":"Der Block kann nicht in dieser Region abgelegt werden.","Customize dashboard":"Dashboard anpassen","Hide summary":"Zusammenfassung verbergen","Edit summary":"Zusammenfassung bearbeiten","@title dialog":"@title Dialog","Re-order rows by numerical weight instead of dragging.":"Zeilen mittels numerischer Gewichtung ordnen statt mit Drag-and-Drop","Show row weights":"Zeilenreihenfolge anzeigen","Hide row weights":"Zeilenreihenfolge ausblenden","Autocomplete popup":"Popup zur automatischen Vervollst\u00e4ndigung","Searching for matches...":"Suche \u2026","Hide shortcuts":"Shortcuts ausblenden"}} };;
(function($) {
  $(document).ready(function() {
    $(".front-teaser-dossier-list li").click(function(e) {
      // Check if this event had been fired by the li-element.
      // And only if true, trigger the click on the containing a-element.
      if ( e.target.nodeName.toLowerCase() == "li" ) {
        $(this).find("a").trigger('click');
      }
    });
  });
})(jQuery);


var Front = {
  slideTo: function(idx) {
    jQuery('.front-teaser-dossier-list li').removeClass('act');
    var items = jQuery('.front-teaser-dossier-list li');
    if ( items[idx] != undefined ) {
      jQuery(items[idx]).addClass('act');
    }
    
    jQuery("#frontWrapper").stop().animate({
      marginLeft: - (idx * 633)
    }, 500);
  }
};
;
(function($) {
  
  /**
   * Finds the first a-tag in the DOM descendants of the clicked element. If found, its href attribute
   * gets assigned to the window.location object. So this is actually as clicking the link.
   */
  function article_landscape_container_click() {
    var links = $(this).find("a").blur();
    if ( links.length > 0 ) {
      window.location.assign($(links[0]).attr("href"));
    }
    
    return false;
  }
  
  /**
   * HoverIn handler for the article_landscape_container.
   */
  function article_landscape_container_hoverIn() {
    $(this).css("background-color", "#ffffff");
    $(this).find("h2 a").addClass("hover");
  }
  
  /**
   * HoverOut handler for the article_landscape_container.
   */
  function article_landscape_container_hoverOut() {
    $(this).css("background-color", "");
    $(this).find("h2 a").removeClass("hover");
  }
  
  
  
  /**
   * The DOM ready function.
   */
  $(document).ready(function() {
    $(".article-landscape-container")
      .click(article_landscape_container_click)
      .css("cursor", "pointer")
      .hover(article_landscape_container_hoverIn, article_landscape_container_hoverOut);
  });

})(jQuery);
;
(function($) {
  $(document).ready(function() {
    $(".tabBlock li.tabBlockTab a").click(function() {
      $(this).blur();
      
      var href = $(this).attr("href").substr(1);
      if ( href != undefined && href != "" ) {
        TabBlock.showTab(href);
      }
      return false;
    });
    $(".tabBlock li.tabBlockTab").click(function () {
      $(this).find("a").click();
    });
  });
})(jQuery);


var TabBlock = {
  showTab: function(tabId) {
    jQuery("#" + tabId).parents(".tabBlock").find("li.tabBlockTab").removeClass("tabBlockTabAct");
    jQuery("#tab_" + tabId).addClass("tabBlockTabAct");
    
    // Hide all siblings.
    jQuery("#" + tabId).siblings(".tabItem").hide();
    jQuery("#" + tabId).show();
  }
};
;

