function document_init(){
	var google_text = document.getElementById('google_text');
	
	if(google_text == null){
		return false;
	}
	
	//------------------------
	// テキストボックス背景の初期設定
	//------------------------
	if(google_text.value == ''){
	
		google_text.style.backgroundImage = 'url("img/google_custom_search_watermark01.gif")';
	}
	
	//------------------------
	// テキストボックスにフォーカスが当たった
	//------------------------
	google_text.onfocus = function(){
		// 背景を消します
		google_text.style.backgroundImage = 'none';
	};
	
	//------------------------
	// テキストボックスからフォーカスが離れた
	//------------------------
	google_text.onblur = function(){
		if(google_text.value == ''){
			// 文字が入力されていなければ背景を設定します
			google_text.style.backgroundImage = 'url("img/google_custom_search_watermark01.gif")';
			return;
		}
		
		// 文字が入力されていれば背景を消します
		google_text.style.backgroundImage = 'none';
	};
}

if(window.addEventListener != undefined){
	window.addEventListener('load', document_init, false);
}

if(window.attachEvent != undefined){
	window.attachEvent('onload', document_init);
}
