// Bind class textarea.autogrow to jQuery.autogrow()
// See: http://plugins.jquery.com/project/autogrow

$JQ = jQuery.noConflict();

$JQ(document).ready (function() {
  $JQ('textarea.autogrow').autogrow();
});
