$(document).ready(function(){
	
	// grab the email form and set the value to blank onFocus
	$("#emailAddy").focus(function(){
		$(this).val('');
	});
	
});


