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>The right PMS system!</b> I am SO GLAD that we kept looking for the right PMS system for our property! <b>Tropical Shores Beach Resort</b>";
rotatingText[2] = "<b>Flexibility and Reporting Capabilities</b> After having looked at several reservations systems, we opted for RoomKey for several reasons. <b>Safari West</b>";
setInterval(rotateText, 5000);
}
function rotateText() {
ctr++;
if(ctr >= rotatingText.length) {
ctr = 0;
}
rotatingTextElement.innerHTML = rotatingText[ctr];
}
window.onload = initRotateText;