diff --git a/external.js b/external.js
index dc099fc..ce71a78 100644
--- a/external.js
+++ b/external.js
@@ -1,7 +1,7 @@
 // $Id: external.js 841 2011-07-07 21:46:08Z rbrown $
 Drupal.behaviors.external = function(context) {
   // Open external links in new tabs.
-  $("a[href^=http\\:\\/\\/]:not(.external-processed)", context).each(function() {
+  $("a[href^=http\\:\\/\\/]:not(.external-processed), a[href^=https\\:\\/\\/]:not(.external-processed)", context).each(function() {
     if(this.href.toLowerCase().indexOf(location.hostname) == -1 || this.href.toLowerCase().indexOf(location.hostname) > 13) {
       $(this).click(externalNewWindow);
     }
