var index = 0;
window.addEvent('domready', function(){
	$('testimonial').getElement('blockquote').innerHTML = '<h4>'+testimonials[index].company+'</h4><p>&quot;'+testimonials[index].quote+'&quot;<strong>'+testimonials[index].author+'</strong></p>';
	swap_testimonial.delay(5000);
});
function swap_testimonial() {
	index++
	if (index >= testimonials.length) {
		index = 0;
	}
	new Fx.Tween($('testimonial').getElement('blockquote'), {
		transition: 'quad:out',
		duration: 600,
		onComplete: function() {
			$('testimonial').getElement('blockquote').innerHTML = '<h4>'+testimonials[index].company+'</h4><p>&quot;'+testimonials[index].quote+'&quot;<strong>'+testimonials[index].author+'</strong></p>';
			new Fx.Tween($('testimonial').getElement('blockquote'), {
				transition: 'quad:in',
				duration: 400,
				onComplete: function() {
					swap_testimonial.delay(5000);
				}
			}).start('opacity', 1);
		}
	}).start('opacity', 0);
}