(function($) {
	$(function() {
	
		//テキストフォーカス時のみ非表示
		$("input#Search").val("サイト内検索")
		   .css("color","#969696");
		$("input#Search").focus(function(){
			if(this.value == "サイト内検索"){
				$(this).val("").css("color","#000");
			}
		});
		$("input#Search").blur(function(){
			if(this.value == ""){
				$(this).val("サイト内検索")
					 .css("color","#969696");
			}
			if(this.value != "サイト内検索"){
				$(this).css("color","#000");
			}
		});
		
	});

})(jQuery);
