// JavaScript Document

var emptySearchFieldText = 'search this site...';




function getEl(id){ return document.getElementById(id); }

window.onload = function(){
	s=getEl('s');
	if(s)
	{	
		if(s.value=='' || s.value==' ')
			s.value = emptySearchFieldText;
			
		s.onfocus = function(){ if(this.value==emptySearchFieldText) this.value='';}
		s.onblur = function(){ if(this.value=='' || this.value==' ') this.value=emptySearchFieldText;}
	}
};