/*
	This version of the smartBlur plugin doesn't replace the contents, it just selects it.
*/
$(function() {
   $('input.smartBlur').smartBlur();
});

$.fn.smartBlur = function() {
	return this.focus(function() {
		if (this.value == this.defaultValue) {
			this.select();
		}
	});
};