Drupal.locale = { 'strings': {"Not published":"Yay\u0131nlanmam\u0131\u015f","Select all rows in this table":"Bu tablodaki t\u00fcm sat\u0131rlar\u0131 se\u00e7","Deselect all rows in this table":"Tablodaki sat\u0131r se\u00e7imini iptal et","An AJAX HTTP error occurred.":"Bir AJAX HTTP hatas\u0131 olu\u015ftu.","HTTP Result Code: !status":"HTTP Sonu\u00e7 Kodu: !status","An AJAX HTTP request terminated abnormally.":"Bir AJAX HTTP istemi ola\u011fand\u0131\u015f\u0131 sonland\u0131r\u0131ld\u0131.","Path: !uri":"Yol: !uri","StatusText: !statusText":"Durum Metni: !statusText","ResponseText: !responseText":"Yan\u0131t Metni: !responseText","(active tab)":"(etkin sekme)","Hide":"Gizle","Show":"G\u00f6ster","Loading":"Y\u00fckleniyor","Not restricted":"K\u0131s\u0131tl\u0131 de\u011fil","Restricted to certain pages":"Belli sayfalara k\u0131s\u0131tl\u0131","Not customizable":"\u00d6zelle\u015ftirilemez","The changes to these blocks will not be saved until the \u003cem\u003eSave blocks\u003c\/em\u003e button is clicked.":"Bloklarda yap\u0131lan de\u011fi\u015fiklikler, \u003cem\u003eBloklar\u0131 kaydet\u003c\/em\u003e d\u00fc\u011fmesi t\u0131klan\u0131ncaya dek kaydedilmez.","The block cannot be placed in this region.":"Blok bu b\u00f6lgede yer alamaz.","Show row weights":"Sat\u0131r a\u011f\u0131rl\u0131klar\u0131n\u0131 g\u00f6ster","Hide row weights":"Sat\u0131r a\u011f\u0131rl\u0131klar\u0131n\u0131 gizle","Drag to re-order":"Yeniden s\u0131ralamak i\u00e7in s\u00fcr\u00fckleyiniz","Changes made in this table will not be saved until the form is submitted.":"Bu tabloda yap\u0131lan de\u011fi\u015fiklikler form g\u00f6nderilenceye dek kaydedilmeyecektir.","Show shortcuts":"K\u0131sayollar\u0131 g\u00f6ster","Hide shortcuts":"K\u0131sayollar\u0131 gizle","Hide summary":"\u00d6zeti gizle","Edit summary":"\u00d6zeti d\u00fczenle","Please wait...":"L\u00fctfen bekleyin...","Not in menu":"Men\u00fcde yok","Not in book":"Kitapta de\u011fil","New book":"Yeni kitap","New revision":"Yeni s\u00fcr\u00fcm","No revision":"S\u00fcr\u00fcm yok","By @name on @date":"@name taraf\u0131ndan @date tarihinde","By @name":"@name taraf\u0131ndan","Alias: @alias":"Takma ad: @alias","Searching for matches...":"E\u015fle\u015fmeler aran\u0131yor..."} };;
(function ($) {

$(document).ready(function() {

  // Accepts a string; returns the string with regex metacharacters escaped. The returned string
  // can safely be used at any point within a regex to match the provided literal string. Escaped
  // characters are [ ] { } ( ) * + ? - . , \ ^ $ # and whitespace. The character | is excluded
  // in this function as it's used to separate the domains names.
  RegExp.escapeDomains = function(text) {
    return (text) ? text.replace(/[-[\]{}()*+?.,\\^$#\s]/g, "\\$&") : '';
  }

  // Attach onclick event to document only and catch clicks on all elements.
  $(document.body).click(function(event) {
    // Catch the closest surrounding link of a clicked element.
    $(event.target).closest("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");
      // Expression to check for the sites cross domains.
      var isCrossDomain = new RegExp("^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\/.*(" + RegExp.escapeDomains(ga.trackCrossDomains) + ")", "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.trackOutbound && this.href) {
          if (ga.trackDomainMode == 2 && isCrossDomain.test(this.href)) {
            // Top-level cross domain clicked. document.location is handled by _link internally.
            _gaq.push(["_link", this.href]);
          }
          else if (ga.trackOutboundAsPageview) {
            // Track all external links as page views after URL cleanup.
            // Currently required, if click should be tracked as goal.
            _gaq.push(["_trackPageview", '/outbound/' + this.href.replace(/^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\//i, '').split('/').join('--')]);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
          }
        }
      }
    });
  });
});

})(jQuery);
;

