function starttestimonials(){
dotestimonials();
}
//
function dotestimonials(){
var tcontent = "<p>" + testimonials[tcurrent][1] + "</p><p><strong>" + testimonials[tcurrent][0] + "</strong></p>" + "<p><a href=\"../testimonials.php\">More Testimonials</a></p>";
document.getElementById(targetdiv).innerHTML = tcontent;
setTimeout(waittestimonials,twait);
}

function waittestimonials(){
if(++tcurrent < testimonials.length){
dotestimonials();
}else{
tcurrent = 0; 
dotestimonials();
}
}



