[html]
	$(function(){
		$(“#freetxt”).css( {color: “#c0c0c0”});
		$(“#freetxt”).focus(function(){
			if($(this).val() == ‘ここに文章を書いてください’)  $(this).val(”);
			$(this).css( {color: “#2a2a2a”});
		  });
		$(“#freetxt”).blur(function(){
			if($(this).val() == ”)  $(this).val(‘ここに文章を書いてください’).css( {color: “#c0c0c0”});
		  });
	});
[/html]