window.addEvent("domready", function() {
	var cur_testimonial = '';
	$$('#testimonials a').each(function(el) {
		el.addEvent('click', function(e) {
			e = new Event(e).stop();
			$(cur_testimonial).removeClass('active');
			$(cur_testimonial + '-testimonial').setStyle('display', 'none');
			this.addClass('active');
			$(this.getProperty('id') + '-testimonial').setStyle('display', 'block');
			cur_testimonial = this.getProperty('id');
		});
	});
	$$('.testimonial').each(function(el) {
		el.setStyle('display', 'none');
	});
	cur_testimonial = $E('a.active', $('testimonials')).getProperty('id');
	$(cur_testimonial + '-testimonial').setStyle('display', 'block');
	$('content').removeClass('fadeout');
});
