
$(document).ready(function()
{
	//append an epty span to cause the dom to reflow
	$("#container").prepend("<span></span/>");


	$("#textArea").css("height","auto").css("display","block");
	
});
