/**
 * JavaScript function for rediretor module (Drupal 7).
 * Changes the href of all links ('a' tags) on the page to go through redirector
 * module.
 *
 * @copyright Copyright 2011-present, T&B Serviceline, project: muffel-forum.de
 */
jQuery(document).ready(
  function(){
    jQuery('a').each(function(){
      //Ignore internal links.
      if (this.href && (this.href.search(window.location.host) == -1) && (this.href.search(/ftp:|https?:/i) != -1)) {
        this.href ='/redirector/?u=' + encodeURIComponent(this.href) + '&s=' + encodeURIComponent(document.URL);
      }
    });
  }
);;

