
 $(document).ready(function() {
	$('.foldout-container .jq-foldout-body').hide();
	$('.foldout-container h3').addClass('jq-foldout-image');
	$('.foldout-container h3').addClass('jq-header-hand');
	
	$('.foldout-container h3').click(
		function() {
			$(this).toggleClass('jq-foldout-image');
			$(this).toggleClass('jq-foldin-image');
			$(this).parent().find('.jq-foldout-body').slideToggle("fast");
		}
	);
});
