// JavaScript Document
//testimonials
var tnum = 1;
function nextTestimonial (){
	jQuery('.testimonial').hide();
	if (tnum != jQuery('.testimonial').length){
		tnum += 1;
	}else{
		tnum = 1;
	}
	jQuery('#testimonial_' + tnum).show();
}
