function timedRotation(){
	
	if ($('div.active').is(":last-child")) {
		nextTestimonial = $('#testimonials div:first-child');
	} else {
		nextTestimonial = $('#testimonials div.active').next();
	}
	
	if ($('div.active-portrait').is(":last-child")) {
		nextPortrait = $('#testimony-portrait-holder div:first-child');
	} else {
		nextPortrait = $('#testimony-portrait-holder div.active-portrait').next();
	}
	
	$('#testimonials div.active').hide().removeClass('active');
	nextTestimonial.fadeIn(1000).addClass('active');
	
	$('#testimony-portrait-holder div.active-portrait').hide().removeClass('active-portrait');
	nextPortrait.show().addClass('active-portrait');
	
	var t2 = setTimeout("timedRotation()",8000);
	
}