var ms = 50;

//$('.mmlocations').hover(
//	function () {
//		$('.mmlocations ul').show(ms);
//	},
//	function () {
//		$('.mmlocations ul').hide(ms);
//	}
//);

//$('.mmlocations>a').click(function () { return false; });

var tmax = $('.testimonial').length - 1;
var tmin = 0;
var tcurr = 0;
var ttallest = 0;
$('.testimonial').each(function() {
	if ($(this).outerHeight() > ttallest) {
		ttallest = $(this).outerHeight();
	}
});
$('#testimonials').height(ttallest + 20);
$('.testimonial').hide();
nextTestimonial();
setInterval(nextTestimonial, 10000);

function nextTestimonial() {
	$('.testimonial').fadeOut(ms * 5);
	$('.testimonial').eq(tcurr).fadeIn(ms * 25);
	tcurr++;
	if (tcurr > tmax) {
		tcurr = 0;
	}
}

