$(document).ready(function () { prepSearch(); });function prepSearch() {	$("#searchInput").bind('focus',function () {		if (this.value == this.defaultValue) this.value = '';	}).bind('blur', function () {		if (this.value == '') this.value = this.defaultValue;	});}