$(document).ready(function(){


    $(".edit").editable("/assets/scripts/save.php", { 
         type      : 'textarea',
         cancel    : 'Cancel',
         submit    : 'OK',
         indicator : "Saving...",
         cssclass  : "editing",
    });
    $(".edit").hover(
      function () {
        $(this).animate({ 
        backgroundColor: "#72FE95",
      }, "fast" );

      }, 
      function () {
        $(this).animate({ 
        backgroundColor: "#CAFFD8",
      }, "fast" );
      }
    );


});