$(function(){
	document.forms["search"].elements["query"].onfocus = function() {
	if (this.value == 'サイト内検索'){
		this.value = '';
		$(this).css("color","#333");
		}
	};

	document.forms["search"].elements["query"].onblur = function() {
	if (this.value == ''){
		this.value = 'サイト内検索';
		$(this).css("color","#999");
		}
	};
})