Drupal.locale = { 'pluralFormula': function ($n) { return Number((($n==1)?(0):((((($n%10)>=2)&&(($n%10)<=4))&&((($n%100)<10)||(($n%100)>=20)))?(1):2))); }, 'strings': {"An AJAX HTTP error occurred.":"Wyst\u0105pi\u0142 b\u0142\u0105d w AJAX HTTP.","HTTP Result Code: !status":"B\u0142\u0105d HTTP: !status","An AJAX HTTP request terminated abnormally.":"Zapytanie AJAX HTTP zosta\u0142o przerwane.","Debugging information follows.":"Informacje diagnostyczne.","Path: !uri":"\u015acie\u017cka: !uri","StatusText: !statusText":"StatusText: !statusText","ResponseText: !responseText":"ResponseText: !responseText","ReadyState: !readyState":"ReadyState: !readyState","Hide":"Ukryj","Show":"Poka\u017c","Open the drawer":"Otw\u00f3rz szuflad\u0119","Close the drawer":"Zamknij szuflad\u0119","Configure":"Konfiguruj","(active tab)":"(aktywna karta)","Re-order rows by numerical weight instead of dragging.":"Zmie\u0144 kolejno\u015b\u0107 wierszy podaj\u0105c warto\u015bci numeryczne zamiast przeci\u0105gaj\u0105c.","Show row weights":"Poka\u017c wagi wierszy","Hide row weights":"Ukryj wagi wierszy","Drag to re-order":"Chwy\u0107, by zmieni\u0107 kolejno\u015b\u0107","Changes made in this table will not be saved until the form is submitted.":"Zmiany wprowadzone w tabeli zachowuje si\u0119 przyciskiem u do\u0142u formularza.","Edit":"Edycja","Enabled":"W\u0142\u0105czony","Disabled":"Wy\u0142\u0105czone","An error occurred at ":"B\u0142\u0105d wyst\u0105pi\u0142 w ","jQuery UI Tabs: Mismatching fragment identifier.":"jQuery UI Tabs: Niepasuj\u0105cy fragment identyfikatora.","jQuery UI Tabs: Not enough arguments to add tab.":"jQuery UI Tabs: Za ma\u0142o argument\u00f3w by doda\u0107 zak\u0142adk\u0119.","Upload":"Dodaj plik","Done":"Gotowe","Select all rows in this table":"Zaznacza wszystkie wiersze tabeli","Deselect all rows in this table":"Cofa zaznaczenie wszystkich wierszy tabeli","Not published":"Nie do publikacji","Only files with the following extensions are allowed: %files-allowed.":"Dozwolone s\u0105 jedynie pliki o nast\u0119puj\u0105cych rozszerzeniach: %files-allowed.","Not in menu":"Nie ma w menu","The changes to these blocks will not be saved until the \u003cem\u003eSave blocks\u003c\/em\u003e button is clicked.":"Zmiany wprowadzone w blokach zachowuje si\u0119 przyciskiem u do\u0142u formularza.","This permission is inherited from the authenticated user role.":"Te uprawnienia s\u0105 dziedziczone wed\u0142ug rangi zalogowanego u\u017cytkownika.","@number comments per page":"@number odpowiedzi na stronie","Not customizable":"Niekonfigurowalne","Customize dashboard":"Dostosuj kokpit","Hide summary":"Ukryj podsumowanie","Edit summary":"Edytuj podsumowanie"} };;
/* $Id $ */
(function ($) {

  $(document).ready(function() {
    // Add signwriter-hover class to the menus that signwriter is being used for.
    $('img.signwriter-hover')
          .parents('ul.menu')
          .addClass('signwriter-hover');
  
    $('img.signwriter-hover')
  
    set_signwriter_active_top();
  
    // Add over class so it will work in IE.
    $('ul.menu.signwriter-hover li a:not(.active)').hover(function() {
      $(this).addClass('over');
      set_signwriter_over_top(this);
    }, function() {
      $(this).removeClass('over');
      $(this).children('img.signwriter-hover').css('top', 0);
    });
  
    // Set css top values for hover images based on the height of the image
    function set_signwriter_over_top(elem) {
      var image_height =  $(elem).height();
      var over_top = 0 - image_height;
  
      $(elem).children('img.signwriter-hover').css('top', over_top);
    }
  
    // Set css top values for active images based on the height of the image
    function set_signwriter_active_top() {
      var image_height =  $('a.active img.signwriter-hover').height();
      var active_top = 0 - ((image_height / 3) * 2);
  
      $('ul.menu.signwriter-hover').find('a.active img.signwriter-hover').css('top', active_top);
    }
  });

})(jQuery);
;
// $Id: googleanalytics.js,v 1.11.2.2 2011/01/02 15:35:59 hass Exp $
(function ($) {

$(document).ready(function() {

  // Attach onclick event to document only and catch clicks on all elements.
  $(document.body).click(function(event) {
    // Catch only the first parent link of a clicked element.
    $(event.target).parents("a:first,area:first").andSelf().filter("a,area").each(function() {

      var ga = Drupal.settings.googleanalytics;
      // Expression to check for absolute internal links.
      var isInternal = new RegExp("^(https?):\/\/" + window.location.host, "i");
      // Expression to check for special links like gotwo.module /go/* links.
      var isInternalSpecial = new RegExp("(\/go\/.*)$", "i");
      // Expression to check for download links.
      var isDownload = new RegExp("\\.(" + ga.trackDownloadExtensions + ")$", "i");

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing && this.href) {
          // External link clicked.
          _gaq.push(["_trackEvent", "Outgoing links", "Click", this.href]);
        }
      }
    });
  });
});

})(jQuery);
;

