$(document).ready(function(){

 // Hiding all the testimonials, except for the first one.
 $('#testimonial li').hide().eq(0).show();

 // A self executing function that loops through the testimonials:
 (function showNextTestimonial(){

 // Wait for 7.5 seconds and hide the currently visible testimonial:
 $('#testimonial li:visible').delay(7500).fadeOut('slow',function(){

 // Move it to the back:
 $(this).appendTo('#testimonial ul');

// Show the next testimonial:
$('#testimonial li:first').fadeIn('slow',function(){

 // Call the function again:
 showNextTestimonial();
 });
 });
 })();

});
$(document).ready(function(){
	$('#slider').click(function(e) {
    e.preventDefault();
    //do other stuff when a click happens
});

	$('.about-test-gen .more').click(function(){
		$(this).siblings().toggleClass('about-test-body-full');
										 });
	
 });


