function hideAll() {
	$("#letter").hide();
	$("#owner_info").hide();
	$("#repairs").hide();
	$("#property_info").hide();
	$("#comments").hide();
	$("#bedding").hide();
	$("#amenities").hide();
	$("#term_rates").hide();
	$("#weekly_rates").hide();
	$("#other_agencies").hide();
	$("#submit").hide();
	
}
// generic "show" function
function showElement(element) {
	$(element).show();
	return true;
}

function checkForm() {
	if ( $("#agree:checked").val() == 1) {
		return true;
	} else {
		alert("You must agree to the Terms and Conditions before submitting");
		return false;
	}
}
	


$(document).ready(function(){
   // hide everything but the letter to get started
	 hideAll();
	 showElement('#letter');
});
