var rotatingTextElement;
var rotatingText = new Array();
var ctr = 0;

function initRotateText() {
rotatingTextElement = document.getElementById("textToChange");
rotatingText[0] = rotatingTextElement.innerHTML; // store the content that's already on the page
rotatingText[1] = "<b>Amazing dinner!</b> <br>Thank you so much for the amazing dinner and phenomenal service on our honeymoon celebration dinner. You made it very special for us.<br> <b>Mark & Nicole Earl</b>";
rotatingText[2] = "<b>Wonderful food and service!</b> <br>Super nice people! Merci for everything. You just made our last night in Quebec memorable.<br><b>Marco Desaly Jr</b>";
setInterval(rotateText, 5000);
}
function rotateText() {
ctr++;
if(ctr >= rotatingText.length) {
ctr = 0;
}
rotatingTextElement.innerHTML = rotatingText[ctr];
}
window.onload = initRotateText;