			$('#testimonials .comment');
			setInterval(function(){
				$('#testimonials .comment').filter(':visible').fadeOut(2000,function(){ //Fades out the current, visible slide...
					if($(this).next('li.comment').size()){ //Checks to see if there are more to fade in after this one... 
						$(this).next().fadeIn(1000); //Duration of the fade in transistion
					}
					else{ // If no other comments to load, go to the first one... (denoted by the eq(0))
						$('#testimonials .comment').eq(0).fadeIn(1000); //Duration of the fade in transistion
					}
				});
			},9000); //This changes the overall delay in the duration of the shown quote
