// Testimonial Cycling
$(function() {
	// Slideshow
	$('#testimonial-cycle').cycle({
	    fx:     'fade',
		timeout: 12000
	});
	var testimonials = $('#testimonial-cycle');
	var height = 0;
	testimonials.children().each(function(index, currentElem) {
		currentHeight = $(currentElem).height();
	    if(height < currentHeight) {
			height = currentHeight;
		}
	});
	testimonials.height(height);
});

