$(function(){
	$("#booking-continue").click(function(){
		$("#booking-part1").hide();
		$("#booking-part2").fadeIn("slow");
		return false;
	});
	$("#booking-back").click(function(){
		$("#booking-part2").hide();
		$("#booking-part1").fadeIn("slow");
		return false;
	});
	$("#booking_form > form").submit(function(){
		$.ajax({
			type: "POST",
			url: site_root+"booking.php",
			data: $("#booking_form > form").serialize(),
			success: function(response){
				response = eval('('+response+')');
				if( response.alert )
					alert(response.alert);
				else if( response.content )
					$("#booking_form > form").replaceWith('<div class="success_message">'+response.content+'</div>');
			}
		});
		return false;
	});
});