diff -wup --recursive recaptcha/README.txt recaptcha-dev/README.txt
--- recaptcha/README.txt	2011-05-04 12:32:31.000000000 -0400
+++ recaptcha-dev/README.txt	2011-05-09 09:48:18.000000000 -0400
@@ -5,7 +5,7 @@ reCAPTCHA for Drupal
 The reCAPTCHA module uses the reCAPTCHA web service to
 improve the CAPTCHA system and protect email addresses. For
 more information on what reCAPTCHA is, please visit:
-    http://recaptcha.net
+    http://www.google.com/recaptcha
 
 
 INSTALLATION
@@ -26,7 +26,7 @@ CONFIGURATION
        admin/config/people/captcha/recaptcha
 
 3. Register for a public and private reCAPTCHA key at:
-       http://recaptcha.net/api/getkey
+       http://www.google.com/recaptcha/whyrecaptcha
 
 4. Input the keys into the reCAPTCHA settings. The rest of
    the settings should be fine as their defaults.
@@ -55,7 +55,7 @@ you use that input filter:
    
 4. Click on the Configure tab and put in a public and
    private Mailhide key obtained from:
-       http://mailhide.recaptcha.net/apikey
+       http://www.google.com/recaptcha/mailhide/apikey
 
 5. Use the Rearrange tab to rearrange the weight of the
    filter depending on what filters already exist.  Make
@@ -96,7 +96,7 @@ If you don't implement this function, it
 easily customizable through manipulating the CSS.
 
 For more information on this, visit:
-http://recaptcha.net/apidocs/captcha/client.html#customization
+http://code.google.com/apis/recaptcha/docs/customization.html
 
 
 CHANGELOG
@@ -110,4 +110,4 @@ THANK YOU
 
  * Thank you goes to the reCAPTCHA team for all their
    help, support and their amazing Captcha solution
-       http://www.recaptcha.net
+       http://www.google.com/recaptcha
diff -wup --recursive recaptcha/recaptcha_mailhide.module recaptcha-dev/recaptcha_mailhide.module
--- recaptcha/recaptcha_mailhide.module	2011-05-04 12:32:31.000000000 -0400
+++ recaptcha-dev/recaptcha_mailhide.module	2011-05-09 09:51:09.000000000 -0400
@@ -15,15 +15,15 @@ function recaptcha_mailhide_help($path,
       $output .= t('reCAPTCHA');
       break;
     case 'admin/modules#description':
-      $output .= t('Uses the <a href="@url" target="_blank">reCAPTCHA</a> web service to protect email addresses.', array('@url' => url('http://www.recaptcha.net')));
+      $output .= t('Uses the <a href="@url" target="_blank">reCAPTCHA</a> web service to protect email addresses.', array('@url' => url('http://www.google.com/recaptcha')));
       break;
     case 'admin/help#recaptcha':
       $output .= '<p>' .
-        t('Uses the reCAPTCHA web service to protect email addresses. For more information on what reCAPTCHA Mailhide is, visit <a href="@url" target="_blank">the official website</a>.', array('@url' => url('http://mailhide.recaptcha.net'))) .
+        t('Uses the reCAPTCHA web service to protect email addresses. For more information on what reCAPTCHA Mailhide is, visit <a href="@url" target="_blank">the official website</a>.', array('@url' => url('http://www.google.com/recaptcha/mailhide/'))) .
         '</p><h3>' .
         t('Configuration') .
         '</h3><p>' .
-        t('Head over to the <a href="@inputformats">input format settings</a> and add the <a href="@url" target="_blank">reCAPTCHA Mailhide</a> input filter to hide posted emails.', array('@inputformats' => url('admin/settings/filter'), '@url' => url('http://mailhide.recaptcha.net'))) .
+        t('Head over to the <a href="@inputformats">input format settings</a> and add the <a href="@url" target="_blank">reCAPTCHA Mailhide</a> input filter to hide posted emails.', array('@inputformats' => url('admin/settings/filter'), '@url' => url('http://www.google.com/recaptcha/mailhide/'))) .
         '</p>';
       break;
   }
@@ -71,20 +71,20 @@ function _filter_recaptcha_mailhide_sett
     '#title' => t('Public Key'),
     '#default_value' => $public,
     '#maxlength' => 50,
-    '#description' => t('Your public Mailhide key obtained from <a href="@url" target="_blank">reCAPTCHA</a>.', array('@url' => 'http://mailhide.recaptcha.net/apikey')),
+    '#description' => t('Your public Mailhide key obtained from <a href="@url" target="_blank">reCAPTCHA</a>.', array('@url' => 'http://www.google.com/recaptcha/mailhide/apikey')),
     );
   $settings['recaptcha_mailhide_private_key'] = array(
     '#type' => 'textfield',
     '#title' => t('Private Key'),
     '#default_value' => $private,
     '#maxlength' => 50,
-    '#description' => t('Your private Mailhide key obtained from <a href="@url" target="_blank">reCAPTCHA</a>.', array('@url' => 'http://mailhide.recaptcha.net/apikey')),
+    '#description' => t('Your private Mailhide key obtained from <a href="@url" target="_blank">reCAPTCHA</a>.', array('@url' => 'http://www.google.com/recaptcha/mailhide/apikey')),
     );
   return $settings;
 }
 
 function _filter_recaptcha_mailhide_tips($filter, $format, $long = FALSE) {
-  return t('E-Mail addresses are hidden with <a href="@url" target="_blank">reCAPTCHA Mailhide</a>.', array('@url' => 'http://mailhide.recaptcha.net/'));
+  return t('E-Mail addresses are hidden with <a href="@url" target="_blank">reCAPTCHA Mailhide</a>.', array('@url' => 'http://www.google.com/recaptcha/mailhide/'));
 }
 
 /**
diff -wup --recursive recaptcha/recaptcha.module recaptcha-dev/recaptcha.module
--- recaptcha/recaptcha.module	2011-05-04 12:32:31.000000000 -0400
+++ recaptcha-dev/recaptcha.module	2011-05-09 09:49:59.000000000 -0400
@@ -16,11 +16,11 @@ function recaptcha_help($path, $arg) {
       break;
     case 'admin/modules#description':
     case 'admin/user/captcha/recaptcha':
-      $output .= t('Uses the <a href="@url" target="_blank">reCAPTCHA</a> web service to improve the CAPTCHA system and protect email addresses.', array('@url' => url('http://www.recaptcha.net')));
+      $output .= t('Uses the <a href="@url" target="_blank">reCAPTCHA</a> web service to improve the CAPTCHA system and protect email addresses.', array('@url' => url('http://www.google.com/recaptcha')));
       break;
     case 'admin/help#recaptcha':
       $output .= '<p>' .
-        t('Uses the reCAPTCHA web service to improve the CAPTCHA module and protect email addresses. For more information on what reCAPTCHA is, visit <a href="@url" target="_blank">the official website</a>.', array('@url' => url('http://www.recaptcha.net'))) .
+        t('Uses the reCAPTCHA web service to improve the CAPTCHA module and protect email addresses. For more information on what reCAPTCHA is, visit <a href="@url" target="_blank">the official website</a>.', array('@url' => url('http://www.google.com/recaptcha'))) .
         '</p><h3>' .
         t('Configuration') .
         '</h3><p>' .
@@ -114,7 +114,7 @@ function recaptcha_captcha() {
           global $language;
           if (isset($language->language)) {
             // reCAPTCHA uses two-character language codes, so 'pt-br' must be
-            // passed as 'pt' (cf. http://wiki.recaptcha.net/index.php/I18n).
+            // passed as 'pt'; cf. http://code.google.com/apis/recaptcha/docs/customization.html#i18n
             $recaptcha_options['lang'] = drupal_substr($language->language, 0, 2);
           }
 
@@ -154,7 +154,7 @@ function recaptcha_captcha() {
             '#markup' => '<div id="recaptcha_ajax_api_container">' . $html . '</div>',
           );
           $js = "(function ($) { $(function() { Recaptcha.create('$recaptcha_public_key', 'recaptcha_ajax_api_container', {theme: '$recaptcha_theme'});});})(jQuery);";
-          drupal_add_js('http://api.recaptcha.net/js/recaptcha_ajax.js', array('type' => 'external'));
+          drupal_add_js('https://www.google.com/recaptcha/api/js/recaptcha.js', array('type' => 'external'));
           drupal_add_js($js, array('type' => 'inline'));
         }
       }
