$(document).ready(function(){
	$('#testimoniallist .item').css('display','none');
	$('#testimoniallist').css('display','block');

	$('#testimoniallist .container h3').click(function(){

		if($(this).hasClass('open')){
			$('#testimoniallist .container h3').removeClass('open');
			$('#testimoniallist .item').slideUp().removeClass('hide'); //hide all previously revealed items and remove all hide classes that were previously set
		}
		else {
			$('#testimoniallist .container h3').removeClass('open');
			$('#testimoniallist .item').css('display','none').removeClass('hide'); //hide all previously revealed items and remove all hide classes that were previously set

			$(this).addClass('open');
			$(this).parent('.container').find(' ~ .container').find(' ~ .item').addClass('hide'); //add hide classes to all items that are siblings of other containers
			//$(this).parent('.container').find('~ .item').not('.hide').css('display','block');
			$(this).parent('.container').find('~ .item').not('.hide').slideDown();
		}

	});
});
