var curr_test = -1;
jQuery.noConflict();
jQuery(document).ready(function() {
	var t = jQuery('div.testimonial');
	t.hide();
	curr_test = Math.floor(Math.random() * t.length);
	swapTestimonial();
	setInterval('swapTestimonial()',15000);
});
function swapTestimonial() {
	jQuery('div.testimonial').eq(curr_test).fadeOut(1000,function() {
		var t = jQuery('div.testimonial');
		++curr_test;
		if(curr_test >= t.length)
			curr_test = 0;
		t.eq(curr_test).fadeIn(1000);
	});
}
