 $(function() {initForm()} );
 
 function initForm() { 
   $("#destSelect").change(function() {
     var file = 'components/com_booking/forms/' + $(this).children("[@selected]").val() + '.html';
	 $('#accommodations').html("Loading...")
	 $('#accommodations').load(file);
	 populateHead($(this).children("[@selected]").text());
   });
   }
   
   function addClickHandlers() { 
	$("#destChange").click(function() {
	  $('#head').load('components/com_booking/forms/destSelect.html', initForm);
	  return false;
	});
   }
   
   function populateHead(country) {
	 if (country=='Other') country = "Unique Houses around the world";
     $('#head').html('<h5>'+country+'</h5>(<a href="#" id="destChange" title="Change destination">change</a>)');
	 addClickHandlers(); 
	 }