diff --git a/js/colorbox_load.js b/js/colorbox_load.js
index dc70c1b..edf5884 100644
--- a/js/colorbox_load.js
+++ b/js/colorbox_load.js
@@ -34,6 +34,20 @@ Drupal.behaviors.initColorboxLoad = {
     $('a, area, input', context)
       .filter('.colorbox-load')
       .once('init-colorbox-load-processed', function () {
+        // Add colorbox=no to links
+        var append = 'colorbox=no';
+        if ($(this).attr('href').match(/\?/)) {
+          if ($(this).attr('href').match(/colorbox=/)) {
+            append = '';
+          }
+          else {
+            append = '&' + append;
+          }
+        }
+        else {
+          append = '?' + append;
+        }
+        $(this).attr('href', $(this).attr('href') + append)
         var params = $.urlParams($(this).attr('href'));
         $(this).colorbox($.extend({}, settings.colorbox, params));
       });
