//ページ内検索 デフォルト文字指定
$(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'));
		}
	});
});
