
//store the quotations in arrays
quotes = new Array(4);
quotes[0] = "I passed the bar exam, and although I worked very hard to prepare, I know that your course played a role in my success. Thank you for offering a reasonably-priced, practical approach to the PE. I will continue to recommend your course to those who have yet to sit (or sit again) for the California Bar. Thanks.";
quotes[1] = "I wanted to thank you for your class. I walked into your class never having seen a performance test before. When I left, as nervous as I was about the exam, I felt like I had a plan. Tonight I received my bar results and I passed the California bar exam. I don't get to find out my scores, but I can tell you that as hard as this exam was, I felt most confident with my performance on the performance tests. So, I just wanted to thank you for giving me the extra confidence I needed to tackle the bar.";
quotes[2] = "I am not sure if you remember me but I took your class for the Febuary Bar exam 2006. I PASSED the bar and I wanted to tell you that your seminar REALLY helped me! You helped me conquer my fears and feel confident during the exam. I really appreciate your assistance. Thank you so very much. God bless you! ";
quotes[3] = "I found out I passed the California Bar Exam this past Friday (and Sunday)! I just wanted to say that I believe your PT workshop was instrumental in giving me the edge I needed to soar over the passing line. I did not feel prepared for PT's after Barbri, and your class gave me the mental security I needed when I became anxious during the PT portion of the exam. I failed both my PT's- got a 65 and a 60 on my first attempt, and having taken your class and used your key methods, I must have performed a lot better!!! Although I felt rather befuddled after the exam was over, having taken your class and used your techniques, I went into the performance test more prepared, solid, and ready for any curve balls (which they definitely threw).";

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<DL>\n" + "<em>");
document.write("<DT>" + quotes[index] + "\n");
document.write("</DL>\n" + "</em>");

//done
