//Remove the annoying space left in textareas because of the mandatory <xsl:text> </xsl:text> to stop the HTML collapsing.
$(document).ready(function(){
	$('textarea').each(function(){
		if($(this).val() == ' '){
			$(this).empty();
		}
	});

});