diff --git a/epsacrop.module b/epsacrop.module
index 036a16d..3f85581 100644
--- a/epsacrop.module
+++ b/epsacrop.module
@@ -313,6 +313,13 @@ function epsacrop_crop_image_form($data) {
     //'#element_validate' => array('image_effect_integer_validate'), 
     //'#allow_negative' => FALSE,
   );
+
+  $form['jcrop_settings']['fallback'] = array(
+    '#type' => 'checkbox',
+    '#title' => t('Ignore if not manually set'),
+    '#description' => t("If a user does not manually set the crop, ignore these settings.  This is useful if you want to use other effects to set a default crop, which may then be overridden manually using EPSA Crop.  If this is unchecked, make sure that the EPSA Crop effect is the first in the list of effects."),
+    '#default_value' => isset($data['jcrop_settings']['fallback']) ? $data['jcrop_settings']['fallback'] : FALSE
+  );
   
   return $form;
 }
@@ -351,7 +358,7 @@ function epsacrop_crop_image(stdClass $image, $settings) {
       }
     }
   }
-  return image_crop_effect($image, $settings);
+  return (empty($settings['jcrop_settings']['fallback']))? image_crop_effect($image, $settings) : TRUE;
 }
 
 /**
