/*
$.fn.search = function() {
	return this.focus(function() { if( this.value == this.defaultValue ) { this.value = ""; } }).blur(function() { if( !this.value.length ) { this.value = this.defaultValue; } });
};

$(document).ready(function(e) {
	$("#search-text").search();
	$("#search-button").click(function(event) {
		event.preventDefault();
		alert("The search function has been disabled.");
	});
});
*/