
function init() {
	document.getElementById( 's' ).onfocus = function() {
		if ( 'Search' == this.value )
			this.value = '';
	};
	document.getElementById( 's' ).onblur = function() {
		if ( '' == this.value )
			this.value = 'Search';
	};
}

window.onload = init;
