var $ = jQuery.noConflict();
$(document).ready(function()
{
    $('textarea').autogrow(
    {
		minHeight: 10,
		lineHeight: 11
    });
    
});
