/*$(document).ready(function() {
  $('textarea.autogrow').autogrow({maxHeight: 600});
  $('textarea.autogrow-small').autogrow({maxHeight: 200});
});


$(document).ready(function() {
    $("body").append("<div id='debug'>turn grid: <a href='' id='togglegrid'>" + gridstate() + "</a></div>");
    $("#debug").css("position", "absolute");
    $("#debug").css("bottom", "0");
    $("#togglegrid").click(toggle_grid);
});

var show_grid = false;

function toggle_grid () {
	show_grid = !show_grid;
    if (show_grid)
	{	
		$(".container").append("<div class='showgrid'>&nbsp !!!!!</div>");
		$(".showgrid").height( $("body").height() );
	}
	else
		$(".showgrid").remove();
		
    $("#togglegrid").text(gridstate());
    return false;
}

function gridstate () {
    if (show_grid) {
        return 'off';
    } else {       
        return 'on';
    };
}*/
