//remove the suggested donation amt on click and restore it on blur if they don't enter new value
$(document).ready(function(){
	var amt;
	$('input.donation').focus(function() {
		amt = $(this).val();
		$(this).val('');
	}).blur(function() {
		if (this.value == '') {
			$(this).val(amt);
		};
	});
});