//テキストエリア拡大
$(function() {
	$('textarea.resizable:not(.processed)').TextAreaResizer();
});

//フォーカス時にvalue削除
/* 
$(function(){
	$("dl input").one("focus",function(){
	$(this).val("").css("color","#333");
	});
});
 */

