$(document).ready(function() {
	$('form#contactForm').submit(function() {
		if(!hasError) {
			$('form#contactForm li.buttons button').fadeOut('normal', function() {
				$(this).parent().append('<img src="/images/loading.gif" alt="Loading&hellip;" height="31" width="31" />');
			});
			var formInput = $(this).serialize();
			$.post($(this).attr('action'),formInput, function(data){
				$('form#contactForm').slideUp("fast", function() {				   
					$(this).before('<p class="thanks">Your reservation has been placed. We may call or email you to confirm your details. For cancellations and additional information, please <a href="/index.php/contact/">contact us</a>.</p>');
				});
			});
		}
		
		return false;
		
	});
});