// JavaScript Document
function resetSearchInput(){
	var target = document.getElementById('ss_input');
	var defaultPhrase ="Site Search";
	if(!target.value || target.value==defaultPhrase){
		target.style.color = "#AAAAAA";
		target.value = defaultPhrase;
	}
	target.onfocus = function(){

		if(this.value==defaultPhrase){
			this.style.color ="#333333";
			this.value='';
		}
	};
	target.onblur= function(){
		if(this.value==""){
			this.style.color = "#AAAAAA";
			this.value = defaultPhrase;
		}	
	}
}
resetSearchInput();
