/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 4;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
body="My daughter and I have a blast in the Parent-Tot Gymnastics classes! It's great exercise for her, and I like that she's learning new skills each week. Everyone at Louisville Gymnastics has been so nice to us. We have fun jumping on the trampolines together, and my daughter loves getting stamps at the end of class. I would recommend all parents give it a try-it's worth it!";
}

if (quotes==1) {
body="We are so excited about taking classes at Louisville Gymnastics. After taking classes at another gym in town, I noticed a difference as soon as we walked in the door. My two girls were in a small group setting.  The teachers were able to work one on one with them! The classes were very structured without a lot of other distractions around them. I would recommend oberving classes around town.  You will end up at Louisville Gymnastics!";
}

if (quotes==2) {
body="I just love your online registration and the organization that you guys have at Louisville Gymnastics. In my hectic life with 3 little ones, you guys make it easy to look into class possibilities, registration reminders, have parties, etc. On top of all of that, my kids love coming to Louisville Gymnastics.  Not only do they love it, they are improving their gymnastic skills dramatically.  Not to mention, I have seen it as a real self esteem booster!  THANKS SO MUCH!!";
}

if (quotes==3) {
body="Your staff is excellent!  What I appreciate most is that when we have to miss a class, we are able to reschedule for another class with no hassle at all!  Louisville Gymnastics is simply the best!  Thanks for all you do!'";
}

document.write('<div align=left>');
document.write('<p>'+ body +'</p>');
document.write('</div>');
