$(function(){
	$('input#search').focusin(function(){
		if (this.defaultValue == this.value) this.value = '';
	}).focusout(function(){
		if (this.value == '') this.value = this.defaultValue;    
	});
})
