var x = 1;
var y = 1;

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

function show_text() {

  var text = new Array("I have been preparing for the NBDE Part 1 for the last couple of months. Crack the NBDE is a very useful tool if one wants to prepare effectively for the exam. It's helping me a lot and I will recommend it to others.<br /><br /><strong>Punit Rastogi (Rohtak Dental College, India)</strong>",
"Crack the NBDE has been one of the best things that happened to me before my exam. It is comprehensive, easy-to-use and just such a confidence builder.<br /><br /><strong>Radhika Katragunta (University of Kentucky)</strong>",
"All I can say is that crack the nbde is really worth for what it is. It perfectly simulates the national dental board questions/current format.<br /><br /><strong>Suneet Koul (AME's Dental College and Research Center, India)</strong>",
"I came across this programme quite by accident. We all feel that we must do as many past papers, just in case we are lucky enough to find repeats, unfortunately I did not find that to be the case.<br /><br /><strong>Shareena Ilyas (University of London)</strong>",
"In my opinion, Crack the NBDE is one of the best tools that I have used, because not only gave me the confidence that I needed to feel comfortable on the computerized test, but it helps you to review the material.<br /><br /><strong>Jeanette Novara (Central University of Venezuela)</strong>",
"I have the decks and I have the Kaplan material but nothing compares to preparing for the new version of the NBDE part I like Crack the NBDE.<br /><br /><strong>Callisto Rojas (University of Nevada Las Vegas)</strong>",
"Thank you! I have been preparing to take the NBDE Part 1 for the 3rd time. I went through ASDA test books and Dental Decks, but when I got Crack the NBDE, I feel more confident now and ready for my test.<br /><br /><strong>Eduardo Lopez (Cuahutemoc University, Puebla Mexico)</strong>",
"This unique course has truly helped me achieve a thorough understanding of what to expect from NBDE 1 and how to be proactive on dealing with various issues like time management.<br /><br /><strong>Ishrat Naurine (Baqai Med University, Pakistan)</strong>",
"I am about to take the NBDE part 1 for the second time. I participated in study groups, used the Dental Decks, and practice exams. I thought I was ready.<br /><br /><strong>Mario Calvo (Colombian School of Dentistry)</strong>",
"Great program, great support team, and definitely worth the price! It's a great simulation of the real computer based NBDE part 1. I strongly recommend it if you want to be ready on the day of the exam.<br /><br /><strong>Samer Khayat (Boston University)</strong>",
"This is a software that can help you understand how the exam works and it's really like taking the exam when you are at home using it. It really help me realize and pinpoint the subjects where i was weak in.<br /><br /><strong>Maria Lan (University of the East, Philippine)</strong>",
"I took the Crack the NBDE Part 1 exams on my computer and it was very helpful. Their online support is very good. Would recommend every friend of mine to try this!<br /><br /><strong>Divyashree Sreeramaiah (M S Ramaiah Dental College in Bangalore, India)</strong>",
"I had spent month's trying to find something to help me with the NBDE and had no luck, until I happen to stumble onto the crack the NBDE.<br /><br /><strong>Luisa Gongora (NATIONAL UNIVERSITY OF COLOMBIA)</strong>",
"This is a very special way for preparing your NBDE, you have to try it you won't regret it. It's as if you were in the prometric center and having the test.<br /><br /><strong>Muriel Germany (University of Saint Joseph in Beirut, Lebanon)</strong>",
"I just started to work with the program and I'm already addicted to it. I recommend Crack the NBDE. It is easy to navigate throught the program yourself, it works fast.<br /><br /><strong>Ekaterina Golombisky (Miass Medical School, Russia)</strong>",
"Crack the NBDE is worth every single penny. It is the actual simulation of the test and I highly recommend this to anybody who is planning to take the test.<br /><br /><strong>Mandeep Sidhu (Manipal College of Dental Surgery in Nepal, India)</strong>",
"Crack the NBDE was an extremely effective resource because it allowed me to simulate the exam before I took the NBDE.<br /><br /><strong>Jinna Dhileep (M S Ramaiah Dental College in Bangalore, India)</strong>",
"A great tool in my opinion. NBDE Part I is a serious test and computerized timed exams aren't for everyone.<br /><br /><strong>Cindy Chang (University of Medicine and Dentistry of New Jersey)</strong>",
"Ssshh this is the best kept secret around.<br /><br /><strong>Avi Patel (Boston University)</strong>",
"This resource was truly invaluable and was a great supplement to the Decks and Past Released Tests.<br /><br /><strong>Antonio Davis (University of North Carolina - Chapel Hill)</strong>");

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

}