function init () {
	
	$("#emailText").focus(clearEmail);
	$("#emailText").blur(resetEmail);
	
	$("#zipText").focus(clearZip);
	$("#zipText").blur(resetZip);
	
	
	function clearEmail () {
		if ($(this).val() == 'Email Address') {
			$(this).val('');
		}
	}
	
	function resetEmail () {
		if ($(this).val() == '') {
			$(this).val('Email Address');
		}
	}
	
	function clearZip () {
		if ($(this).val() == 'Zip Code') {
			$(this).val('');
		}
	}
	
	function resetZip () {
		if ($(this).val() == '') {
			$(this).val('Zip Code');
		}
	}
}
