--- editablefields.js	2010-08-16 17:37:07.000000000 -0700
+++ editablefields.new.js	2010-08-16 17:42:24.000000000 -0700
@@ -14,11 +14,14 @@ Drupal.behaviors.editablefields = functi
     $(this).prepend(Drupal.settings.editablefields.clicktoedit_message);
     if (len > 0) {
       $(".editablefields_clicktoedit_message",this).fadeOut(3000);
+      var location = $(this).parent('a').attr('href');
       $(this).mouseover(function() {
         $(".editablefields_clicktoedit_message",this).fadeIn(500);
+        $(this).parent('a').removeAttr('href');
       });
       $(this).mouseout(function() {
         $(".editablefields_clicktoedit_message",this).fadeOut(500);
+        $(this).parent('a').attr('href', location);
       });
     }
     $(this).click(Drupal.editablefields.init);
