var i = 0;
var testimonies = new Array(
    '"...a role model for everyone..."',
    '"...not just my gym but my second home."',
    '"...high cardio athletic conditioning with kickboxing."',
    '"I have gained confidence, strength and skill."',
    '"...knows exactly what everyone needs and what they will need to do to get where they want to be."',
    '"Olando isn\'t just a great Martial artist and fighter, but a great teacher and friend."',
    '"...a great inspiration..."',
    '"No matter what fitness level you are at, you will get a great workout."'
)

//Make this randomly select a testimony later
//Create fade effect later
function testimonies_loop() {
    document.getElementById('testimonies').innerHTML="<testimony>" + testimonies[i] + "</testimony>";
    if(i == 7) {i=0} else {i++;}
    t=setTimeout(testimonies_loop, 4000);
}
window.onload=testimonies_loop;


