// JavaScript Document

$(document).ready(function(){
	
	
		
						   
	$("#contact-toggle").click(function(){
		$("#sign-up-panel").slideToggle("slow");
		$(this).toggleClass("contact-active");
		return false;
	});
			
		if ($('.booking-form').children().hasClass('error') || $('#booking-form p').hasClass('successText')){
			$('#booking-panel').css({'left':'169px','top':'14px'});
		} else {
			
			$("#booking-panel").animate({'left':'696px'}, 2000,
				function(){
					$("#booking-panel").animate({'top':'14px'},"slow")
				}
			);
			
		}
	
	$("#booking-toggle").click(function(){
		if($(this).hasClass('open')){
			$("#booking-panel").animate({'left':'696px'});
			$(this).removeClass('open');
			
		} else {
			$("#booking-panel").animate({'left':'169px'});
			$(this).addClass('open');
		}
		return false;
	});
});

