$(document).ready(function(){
		// Hiding all the testimonials, except for the first one.
	$('#modSponsors 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:
		$('#modSponsors li:visible').delay(2500).fadeOut("slow",function(){
			$(this).css('filter','');

			// Move it to the back:
			$(this).appendTo('#modSponsors ul');
			
			// Show the next testimonial:
			$('#modSponsors li:first').fadeIn("slow",function(){
				
				// Call the function again:
				showNextTestimonial();
			});
		});
	})();

});	
