<!-- begin script
 function displayQuote(){
   // Random Customer Quotes v1.5
   // Created by Wojtek Tilbury
   // Somnyo Consulting
   // http://www.somnyo.com/

   arraycount=10
   quote = new Array(arraycount);
   author1 = new Array(arraycount);
   author2 = new Array(arraycount);
   quote[0] = "I wanted to let you know how much we appreciate the good job you all did with Alex while she was at camp. She is so proud of the experience she had and is already telling people how she plans on going back next year for 3 weeks.";
   author1[0] = "Alex’s Mom";
   author2[0] = "Denver, Colorado";
   quote[1] = "The Learning Camp was a very positive experience for Robby, thanks much to the great effort and capabilities of yourself and your capable staff, Tom, Mark, and the others.  I'm impressed by the variety of activities that he participated in, and the work that he completed in his notebook I hope Robby will have the opportunity to attend your camp again next summer.";
   author1[1] = "Robby’s Dad";
   author2[1] = "Madison, Ohio";
   quote[2] = "You were wrong when you told me that Ben would have a hard time choosing between the two-week and the three-week camp next summer.  He wants to attend ALL the sessions next summer!!!!!  The Learning Camp experience was one of the best of Ben's life.  I have never seen him so full of self-esteem!  For a child who has been called 'stupid' by classmates in the past, this was joy, success and friendship far beyond his (or my) expectations.";
   author1[2] = "Ben’s Mom";
   author2[2] = "Murfreesboro, Tenn.";
   quote[3] = "Just wanted to let you know that Lindsey arrived home bubbling with camp stories.  We got such a kick out of seeing her and hearing all about camp.  She had a GREAT time.  We send our very heartfelt thanks to each of you for your boundless energy, enthusiasm, intense effort, and genuine love that makes The Learning Camp the experience of a lifetime.";
   author1[3] = "Lindsey’s Mom";
   author2[3] = "Chicago, Illinois";
   quote[4] = "My children have not stopped talking about how they loved camp.  In fact, Mary's first words off the airplane were 'Mom, can I go back for the last session?'  They both want to come back next summer.";
   author1[4] = "Mary and Mija’s Mom";
   author2[4] = "Nairobi, Kenya";
   quote[5] = "As the beginning of the new school year approached, James' new confidence really came out.  For the first time, he took the lead in the back to school activities (picking up his schedule, pictures, etc.) and relied on me only for some reading help.  If you ever doubt that what you are doing is worthwhile, we want you to know that IT IS.";
   author1[5] = "James’s Mom";
   author2[5] = "Troy, Michigan";
   quote[6] = "Many thanks to you and your staff for providing such a positive experience for Nicolas.  He came home with more confidence and is a really happy boy.  It is such a comfort and relief, when as parents of a child with learning disabilities, to find a supportive, well-informed and loving group of people to help out in the growing up process. God bless you and we’ll see you next summer!";
   author1[6] = "Nicolas’ Mom and Dad";
   author2[6] = "Las Vegas, New Mexico";
   quote[7] = "As the boys got off the plane, they couldn’t stop talking about camp and the activities.  They loved being in Colorado and at The Learning Camp.  Although Ryan is too old to return, Kevin will be back for two sessions next summer.";
   author1[7] = "Ryan and Kevin’s Dad";
   author2[7] = "Chicago, Illinois";
   quote[8] = "Ben was reading to me last night and stopped to say how much he felt he was helped by the work he did this summer, 'and especially by The Learning Camp.'  Thank you for making this opportunity available for kids who need extra support during the summer.";
   author1[8] = "Ben’s Mom";
   author2[8] = "San Francisco, California";
   quote[9] = "Your Learning Camp has enriched William’s life for the last four years and enabled him to be a confident and more self-reliant young man.  There is no way I can put in words what this means to us, and of course to William.  You, Tom, all your wonderful counselors and teachers have made a truly significant difference in his life.";
   author1[9] = "William’s Mom and Dad";
   author2[9] = "Mission Hills, Kansas";
   quote[10] = "I just wanted to take a minute to tell you Nathan sure enjoyed his camp and loves telling anyone who will listen all about it!  He has so many stories and pictures!  Quite an adventure for him.  Thanks again for all your help.";
   author1[10] = "Nathan’s Mom";
   author2[10] = "Moscow, Russia";

  //calculates a random index
  index = Math.floor(Math.random() * quote.length);

  //displays random quote
  document.write("      <table width='145' border='0' cellspacing='0' cellpadding='5' bgcolor='#E5F5FF' align='right'><tr><td><table width='135' border='0' cellpadding='0' cellspacing='0'>");
  document.write("        <tr> ");
  document.write("          <td colspan='2' width='135' class='quote-text'><img src='/images/quote-start.gif' width='25' height='20'>&nbsp;" + quote[index] + "</td>");
  document.write("        </tr>");
  document.write("        <tr> ");
  document.write("          <td width='110' class='quote-text'><img src='/images/spacer.gif' width='1' height='3'><br><i>" + author1[index] + "<br>" + author2[index] + "</i><br><img src='/images/spacer.gif' width='1' height='5'><br>");
  document.write("            <a href='/letters/index.html'><img src='/images/arrow-blue-right.gif' width='16' height='9' border='0'>More Quotes...</a></td>");
  document.write("          <td width='25' align='right' valign='top'><img src='/images/quote-end.gif' width='25' height='20'></td>");
  document.write("        </tr>");
  document.write("      </table></td></tr></table");
}
// end -->