// JavaScript Document
// フォーカスで消える文字
$(function() {
	$("#findtext").css("color","#999");
	$('#findtext').val("クーちゃんランド　渋谷区");

	$('#findtext')
	  .focus(function() {
			if ($(this).val()=="クーちゃんランド　渋谷区") { $(this).val(""); $(this).css("color","#000");}
		})
		.blur(function() {
			if ($(this).val()=="") {$(this).css("color","#999"); $(this).val("クーちゃんランド　渋谷区");}
		});
});
