﻿function int(){
var testArray = new Array(7);

testArray[0] = new Array(2);

testArray[0][0]="'I have been working with the Fit KidsTM Program for eight years!  This has been a great relationship between the school and Cindy. Fit KidsTM is a professional group of coaches that are great with the children and parents.  We are grateful to have a continuing partnership with Cindy and her staff!'";
testArray[0][1]="-Congressional Schools of Virginia";

testArray[1] = new Array(2);

testArray[1][0]="'All three of my kids have participated in the Fit KidsTM programs.  It is a fantastic program focused on team building, individual successes and kid's safety.  We have used Fit KidsTM for many birthday parties. My kids LOVE Fit KidsTM!'";
testArray[1][1]="-Parent";

testArray[2] = new Array(2);

testArray[2][0]="'You have always seemed like a friend rather than a contractor to our school. You and your staff have set the highest of standards with your dedicated professionalism.  Your staff's work habits, knowledge and communication skills are beyond reproach and are performed at the very highest level.'";
testArray[2][1]="-Nysmith School For the Gifted and Talented";

testArray[3] = new Array(2);

testArray[3][0]="'Thank you for the wonderful experiences you provided our children through your Fit KidsTM program.  One teacher, in particular, thoroughly enjoyed the activities because they went hand-in-hand with her current teaching topic of being 'heart healthy'. The words I have heard over and over again from the children are 'It was fun!'";
testArray[3][1]="-Higher Horizons Head Start";

testArray[4] = new Array(2);

testArray[4][0]="'Thank you very much for your activities for the Children at the Easter Family Picnic.  You were a big hit and we hope you will be able to join next year.'";
testArray[4][1]="-County of Loudoun Department of Social Services";

testArray[5] = new Array(2);

testArray[5][0]="'Fit KidsTM truly made my Great Adventures Summer Camp a great success.  You did a tremendous job of integrating our camp themes with an educational and exciting summer creative movement class. The children were having a blast while learning life-long healthy habits.  I look forward to working with you again next summer.'";
testArray[5][1]="-Congressional Schools of Virginia";

testArray[6] = new Array(2);

testArray[6][0]="'I wanted to thank you very much for this wonderful activity you have brought into Horizon CDC day care each week. My son Hayden has just loved it! That is the one thing he talks about each and every week and always shows us all the new things he has learned. I think what you do with the children is so amazing and so very important for them these days. It seems too many are in front of the TV, computers & video games and not getting enough exercise that they need as well as all the knowledge about their bodies and how to keep healthy. Again, my sincere thanks for all that you have taught my son.'";
testArray[6][1]="-Karen; June 7, 2010";

var randomNum=Math.floor(Math.random()*testArray.length);

var testimonial = document.getElementById("testimonials");
testimonial.appendChild(document.createTextNode(testArray[randomNum][0]));

var author = document.createElement("div");
author.setAttribute("id", "author");
author.appendChild(document.createTextNode(testArray[randomNum][1]));

testimonial.appendChild(author);

var more = document.createElement("a");
more.setAttribute("href", "testimonials.htm");
more.appendChild(document.createTextNode("Read More"));

testimonial.appendChild(more);
}

