  if (document.URL.indexOf('sent') != -1) {
    jQuery('#sent').show();
  } else {
    jQuery('#booking').show();
  }

jQuery(function() {
	jQuery('#u-email-confirm').blur(function() {
		var thisVal = jQuery(this).val();
		var thatVal = jQuery('#u-email').val();
		
		if (thisVal != thatVal) {
			alert('Oops. The email addresses you entered don\'t match.');
			
			jQuery('#u-email').select();
		}
	});
});
