var x = 1;
var y = 1;

function startClock() {
  x = x-y;
  setTimeout("startClock()", 1000);
  if (x == 0) {
    show_text();
    x = 5;
  }
}

function show_text() {

  var text = new Array("With the new release of the novel Crack the OAT (version 4.0) featuring 25 FULL Length Math Exams featuring thousands of math questions with video explanations, why should you miss another math question on the OAT?<br /><br /><strong>Crack OAT Team</strong>",

"Crack Math gives invaluable math practice for the QR section. I appreciate that you have provided this opportunity to sharpen these skills. With more practice comes greater confidence, which is key for test day. Customer service has been outstanding and I love the prompt, quick attention. Thanks!<br /><br /><strong>Catherine Choi (Otterbein College)</strong>");

  var total = text.length;
  var num = Math.round((total-1)*Math.random());
  document.getElementById("change").innerHTML = text[num];

}