$(document).ready(function(){
	
	$('.date').css('color','#777777');
	$('.date').focus(function() { 
		if( this.value == this.defaultValue ) { 
			this.value = "";
			$(this).css('color','#010101');
		 } 
		}
		).blur(function() { 
			if( !this.value.length ) {
				$(this).css('color','#777777');
				this.value = this.defaultValue; 
			} 
		});
	
	
	$('#printQuote').click(function() {
		window.print();
		return false;
	});
	
	// var zipCode = $('#zipCode');
	// var birth = $('#birth');
	// var email = $('#email');
	// var emailConfirm = $('#emailConfirm');
	// var effectiveDate = $('#effectiveDate');
	// var type = $('#type');
	// 
	// $('#submit').click(function() {
	// 	if( zipCode.value == zipCode.defaultValue || birth.value==birth.defaultValue || email.value==email.defaultValue || emailConfirm.value==emailConfirm.defaultValue || effectiveDate.value==effectiveDate.defaultValue || type.value==type.defaultValue){
	// 		alert('Please fill in the required fields.');
	// 		return false;
	// 	}
	// 	
	// });
	
	

})