$(document).ready(function() {
	$("form[name='ccoptin'] input[type='text'], textarea").focus(function () {	
		if (this.value == this.defaultValue) {
			this.value = "";
		}
	});
	
	$("form[name='ccoptin'] input[type='text'], textarea").blur(function () {	
		if (this.value == "") {
			this.value = this.defaultValue;
		}
	});
});
