
$(document).ready(function() {
	// Show hide section on list page - falls back with no JS
	$('.panal_copy').hide();
	
	$('.read_more').click(function(){
		var id = $(this).attr("id");

		var last_char = id.charAt(id.length-1);
		var panel_id = '.body_container_' + last_char;
		
		if( $(panel_id).is(':hidden') ) {
			$('.panal_copy').slideUp(200);	
		 	$(panel_id).slideDown(200);
		}
		else {
			$(panel_id).slideUp(200);	
		}
	})
	
	// cycle for widget
	$(document).ready(function() {
    	$('#testimonials_widget').cycle({
			fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		});
	});	
	
});


