(function($) {
	$(document).ready(function() {
		$('#SearchForm_SearchForm_Search').click(function() {
			if( this.value == this.defaultValue ) {
				$(this).val("");
			}
		}).blur(function() {
			if( !this.value.length ) {
				this.value = this.defaultValue;
			}
		});
	});
})(jQuery);
