// $Id: external.js,v 1.5 2010/01/07 20:21:47 mcrittenden Exp $
$(document).ready(function(){
  if (Drupal.jsEnabled) {
    $("a[href^=http]").each(function() {
      if(this.href.indexOf(location.hostname) == -1) {
        $(this).click(function(){window.open(this.href);return false;});
      }
    });
    if (Drupal.settings.externalpdf) {
      $("a[href*=.pdf]").each(function() {
        $(this).click(function(){window.open(this.href);return false;});
      });
    }
  }
});

