$(document).ready(function() {
	/* Remove default value on focus, put back on blur */
	$('input.javascript-focus-blur').each(function(input) {
		input.defaultValue = input.value;
	}).blur(function(event) {
		if (this.value == '') this.value = this.defaultValue;
	}).focus(function(event) {
		if (this.value == this.defaultValue) this.value = '';
	});
});