
    $(document).ready(function(){
							   
		$('.date-pick').datePicker({autoFocusNextInput: true});
		
				
		$("#myForm").validate();
	
		$('#myForm').ajaxForm(function() { 
	 	$(".contactform").html("<strong>Thanks for getting in touch with us.</strong><br/>We'll try and get back to you as soon as possible."); 
		});	
		
			$("#myForm-Top").validate();
	
		$('#myForm-Top').ajaxForm(function() { 
	 	$(".contactform-top").html("<strong>Thanks for getting in touch with us.</strong><br/>We'll try and get back to you as soon as possible."); 
		});		
		
		
							  
        $('#slider1').bxSlider({
			mode: 'fade', 
            easing: 'easeInOutCirc',
            pager: false,
			controls: false,
			auto: true,
			speed: 2000,
			pause: 5000
        });
		// for future reference...
		// speed and pause there - 2000 is divided between cycles
		// so total time is 6000
		// therefore, loop duration = 1000 delay, then 5000
		$('.slideshowtext') .everyTime (1000, function (){ 
		$('.slideshowtext').slideDown(1000).delay(2500).slideUp(1000).delay(500);			
		});
	
		
	$( "#headerimg" ).click(function(){
  	window.location = 'http://cornerhouse.kitallen.com';
	}); 
						  
						  
	
	
	var container 	= $("#form-hidden");
	var tab		= $("#header");	
	// Bind the link to toggle the slide.
 	$( "#quickbooklink" ).click(
							 
 	function( event ){
 	// Prevent the default event.
 	event.preventDefault();
  
 	// Toggle the slide based on its current
 	// visibility.
 	if (container.is( ":visible" )){
  
 	// Show - slide up.
 	container.slideUp(200);
 	tab.animate({
   	top: 0
 	}, 200);
 
  
 	} else {
  
 	// Show - slide down.
 	container.slideDown( 200 );
   	tab.animate({
   	top: 150
 	}, 200);
 	}
 	}
 	);
  

   });

