$.fn.clearInput = function() {
	return this.live('focus', function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).live('blur', function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
};

$(document).ready(function() {
	
	$(".clearValue").clearInput();
	
});
