$(document).ready(function () {
	/*$('#testimonials .slide');
	setInterval(function () {
		$('#testimonials .slide').filter(':visible').fadeOut(1000, function () {
			if ($(this).next('li.slide').size()) {
				$(this).next().fadeIn(1000);
			}
			else {
				$('#testimonials .slide').eq(0).fadeIn(1000);
			}
		});
	}, 5000);*/
	
	var count = $('#testimonials .slide').length;
	
	var index = Math.floor(Math.random()*count)
	
	$('#testimonials .slide').eq(index).fadeIn(1);
	
});	
