// JavaScript Document
function testSwitch(){
	$('div.testimony').hide();
	var testArr = $('div.testimony');
	var testArrLength = testArr.length;
	randNum = Math.floor(Math.random() * testArrLength + 1);
	testArr.eq(randNum-1).show();
};
$(function() {
	testSwitch();
	setInterval("testSwitch()", 10000);
});
