// JavaScript Document

//opens up the fake dropdown menu with the resort names
$('#resortListContainer').click( function()
{
	$('#resortList').slideToggle('fast');
	$(this).blur();
});


//selects the option from the resort picker and puts the value in a hidden form field.
$('#resortList').children('ul').children('li').click( function()
  {
	  var val = $(this).attr('rel');
	  var text = $(this).html();
	  //$('input[name="ResortName"]').val(text);
	  $('input[name=resort]').val(text);
	  
	  setTimeout("$('#resortList').slideUp('fast')", 300);
	  $('#resortListContainer').html(text);
	  
	  
});
	


