// JavaScript Document


$(document).ready(function(){
 $("#more-search").click(function () {
    $("#more-option").toggle("slow");
    });
						   });
  
  
   $(document).ready(function() {
					$("#adjust a").toggle(function() {
					$('#slidetext').css('height', 'auto').css('overflow', 'visible');
					$(this).text(" - ");
					}, 
					
					function(){
					$('#slidetext').css('height','25').css('overflow', 'hidden');
					$(this).text(" + ");}
					
					);
	});


	$(document).ready(function() {

	    $(".closebtn").click(function() {
	        $(".secret_hotel").hide(1000);
	        $(".secret_arrow").hide(1000);
	    });


	});


