$(document).ready( function() {
	$('#email-signup input.text').focus(function() {
		$(this).val('');
	});
	
	$('#email-signup input.text').blur(function() {
		var newVal = ($(this).val() == '') ? 'Your Email Address' : $(this).val();
		$(this).val(newVal);
	});
	
	$('#join-email-list-page-container input.text').focus(function() {
		$(this).val('');
	});
	
	$('#join-email-list-page-container input.text').blur(function() {
		var newVal = ($(this).val() == '') ? 'Your Email Address' : $(this).val();
		$(this).val(newVal);
	});
});