//$(function() {
$(document).ready(function() {
	
	$("textarea").focus(
		function()
			{
				$(this).select();
			}
	);
	
	
});