function change_slides(){
	$('.ad:first').fadeOut(1000, function(){
		$(this).insertAfter('.ad:last');
		$(this).fadeIn('slow');
	});
};

$(document).ready(function(){
	$('#wpcf7-f1-p6858-o1').hide();
	$('#wpcf7-f2-p6858-o2').hide();
	if ($('.wpcf7-validation-errors').length) {
		$('.wpcf7-validation-errors').each(function(){
			$(this).parent('form').parent('div').show();
			var parent_div_id = $(this).parent('form').parent('div').attr('id');
			if (parent_div_id == 'wpcf7-f2-p6858-o2') {
				$('#booking_form_toggle').attr('checked', 'checked');
			} else {
				$('#contact_form_toggle').attr('checked', 'checked');
			}
		});
	} else {
		$('#wpcf7-f1-p6858-o1').show();
		$('#contact_form_toggle').attr('checked', 'checked');
	}
	
	$('#contact_form_toggle').click(function(){
		$('#wpcf7-f1-p6858-o1').show();
		$('#wpcf7-f2-p6858-o2').hide();
	});
	$('#booking_form_toggle').click(function(){
		$('#wpcf7-f2-p6858-o2').show();
		$('#wpcf7-f1-p6858-o1').hide();
	});
	
	$(".navigation li ul li").hover(
		function () {
			$(this).parent('ul').parent('li').addClass('hovered');
		}, 
		function () {
			$(this).parent('ul').parent('li').removeClass('hovered');
		}
	);
	
	$('.excerpt p').not('.posted, .tags').each(function(){
		$(this).children('a').hide();
	});
	$('.book_excerpt.emphasis').each(function(){
		$('.content_space').prepend($(this));
	});
	if ($('#big_ad').length){
		$('.ad:first').insertAfter('.ad:last');
		$('.ad:first').addClass('first');
		$('.ad:last').addClass('last');
		$('#big_ad .ad:first-child').addClass('opened');
		var slideshow = setInterval("change_slides()", 5000 );
		
	}
	$('.events p a').each(function(){
		$(this).css('display', 'inline');
	});
	
	$('#join_us_form').hide();
	$('#join_us_link').click(function(){
		$(this).toggleClass('clicked');
		$('#join_us_form').toggle();
		return false;
	});
	
});
