$(document).ready(function(){
	$('#schedbtn').click(function() {
		$('#schedform').fadeOut(function() {
			$('#schedform').html("<h4>Thank you for your request</h4> <p>A representative will be in touch within 24 hours!</p>");
		});
	 	
	 	$('#schedform').fadeIn();
	});
	
	$('#maintbtn').click(function() {
		$('#maintform').fadeOut(function() {
			$('#maintform').html("<h4>Thank you for your request</h4> <p>A representative will be in touch within 24 hours!</p>");
		});
	 	
	 	$('#maintform').fadeIn();
	});
	
});
