$(document).ready( function () {

	if ($('#local-event-updates-email')) {
		$('#local-event-updates-email').click( function() {
			if ($.trim(this.value.toLowerCase()) == "enter email address") {
				this.value = "";
			}
		
			return false;
		} );
		
		$("#local-event-updates-email").blur( function() {
			if ( $.trim(this.value) == "" ) {
				this.value = "Enter Email Address";
			}
		} );
	}

} );

