function clearSearch() {
	if(document.getElementById) {
		s = document.getElementById("q");
		s.onfocus = function() {
			if(this.value == "search") this.value="";
		};
		s.onblur = function() {
			if(this.value == "") this.value="search";
		};
	}
}
onload = clearSearch;