// JavaScript Document
$(document).ready(function() {
	$("#zipinput").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
	
	$('.button').click(function() {		
		if ($('#zipinput').val() == "Enter your zip code") {
			$('#zipinput').val('');
		}
	});
	
	$("#email").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
	
	$('.button').click(function() {		
		if ($('#email').val() == "Enter your email address") {
			$('#email').val('');
		}
	});
	
});