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