Event.observe(window, 'load', function() {
	var testimonials = ['lisas', 'dianeandkeithm', 'chrisg', 'joeg'];
	var index = Math.floor(Math.random() * testimonials.size());
	$('testimonial').addClassName(testimonials[index]);
});

