// 入力フォームにフォーカスでサンプルテキストを消去
$(function(){
	$("#q").focus(function() {
		if($(this).val() == $(this).attr('defaultValue'))
			$(this).css('color', '#000').val('');
	}).blur(function() {
		if(jQuery.trim($(this).val()) == "") {
			$(this).css('color', '#999').val($(this).attr('defaultValue'));
		}
	});
});

// 入力フォームにフォーカスでサンプルテキストを消去 for 管理画面の投稿フォーム
$(function(){
	$("#title").focus(function() {
		if($(this).val() == $(this).attr('defaultValue'))
			$(this).css('color', '#000').val('');
	}).blur(function() {
		if(jQuery.trim($(this).val()) == "") {
			$(this).css('color', '#999').val($(this).attr('defaultValue'));
		}
	});
});
