// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "\"I felt Kaplan instructors did an excellent job of covering everything that was on the test.\"<br> - Theresa R., Fast Track Student";
Quotation[1] = "\"Don’t change a thing.\"<br> - Susan H., Fast Track Student";
Quotation[2] = "\"I truly liked Jake the most, because he makes the class interesting, fun, and exciting without compromising the education training.  I’ve learned a lot from him.  Thank you Jake!\"<br> - Claire R. (Real Estate Student)";
Quotation[3] = "\"It’s just a great school to attend overall.\"<br> - Ilka B. (Real Estate Student)";
Quotation[4] = "\"Ms. V.F. is a wonderful instructor, I am very pleased with the education I have received...\"<br> - Cresencio V. (Real Estate Student)";
Quotation[5] = "I was concerned that due to the length of the class day (8 hours) it would become difficult to pay attention throughout.  However, the instructors’ engaging personalities, along with the 10 minute breaks throughout, made it much better.  Both instructors demonstrated a wide range of knowledge and enthusiasm.  In addition, they were able to offer good examples and explanations of complex topics.\"<br> - Amaia G. (Real Estate Student)";
Quotation[6] = "\"All [instructors] were very knowledgeable, courteous, and professional, although James was a favorite.\"<br> - Christina P. (Real Estate Student)";
Quotation[7] = "\"Rick was great.  He had control of the class, command of the knowledge and communicated well.\"<br> - Robert H. (Real Estate Student)";
Quotation[8] = "\Great instructor and very patient.  I really did enjoy taking your courses!\"<br> - Beatriz R. (Real Estate Student)";
Quotation[9] = "\"More interesting than I expected - Great instructors!\"<br> - Lisa M. (Real Estate Student)";
Quotation[10] = "\"Everything was covered very well, I had no previous knowledge but passed the state exam with ease.\"<br> - Jessy C., Insurance Student";
Quotation[11] = "\"I like the teacher (Kevin Bryson) very much, he reviewed all the important subjects over & over again with a lot of humor. He was great!\"<br> - Christina J., Insurance Student";
Quotation[12] = "\"Huggins was a great instructor and covered all topics very well. After taking the test, I found that the course covers all information required to pass the state exam.\"<br> - Anthony Q., Insurance Student";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();

