
$(document).ready(function() {

	//subscriber input box
	$("#subscriber_email").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
	
	//contact form
	$("#message_content").val("");
	
});


