$(document).ready( function(){
  /* Search the entire page for external links and make them open in a new window */
  $('#header-nav-main ul li:contains("Spa") a').attr("rel","external");
  $('a[rel*=external]').click( function() {
		window.open(this.href);
		return false;
	});
	
  
  
  
	
	/* Booking Panel Overlay Inner Panel */
	$('#panel-ta-block').hide();
	$('#panel-ta a#panel-ta-a').click(function() {
		$('#panel-ta-block').toggle();
		return false;
	});
	
	$('#panel-ta-block-but a').click(function() {
		$('#panel-ta-block').hide();
		return false;
	});
	
	$('#panel-ta-block-clear a').click(function() {
		$('#iata_code').attr({ value: '' });
		return false;
	});
  
});
