diff --git a/sites/all/modules/recaptcha/recaptcha.js b/sites/all/modules/recaptcha/recaptcha.js
index a0adb80..591a0be 100644
--- a/sites/all/modules/recaptcha/recaptcha.js
+++ b/sites/all/modules/recaptcha/recaptcha.js
@@ -1,6 +1,10 @@
 (function ($) {
   Drupal.behaviors.recaptcha = {
     attach: function (context) {
+      if(typeof Recaptcha == 'undefined'){
+        setTimeout("Drupal.attachBehaviors()", 500);
+        return;
+      }
       Recaptcha.create(Drupal.settings.recaptcha.public_key, Drupal.settings.recaptcha.container, {theme: Drupal.settings.recaptcha.theme});
     },
     detach: function (context) {}
