var quotes = new Array(2);
quotes[0] = new Array();
quotes[1] = new Array();
// two-dimensional array: add the quote text to quotes[0][x]
//         and the name of the quoted person to quotes[1][x]

quotes[0][0] = "In my nearly 10 years of teaching, this has been the <strong>most rewarding school trip</strong> I have had the opportunity to be a part of.";
quotes[1][0] = "El Alsson American School Curriculum Coordinator";

quotes[0][1] = "I was most impressed by the <strong>range of and extent of knowledge</strong> you were willing to share with the students and virtually all students have returned from Kan Yama Kan having <strong>met and exceeded their own expectations</strong> for teamwork, environmental understanding, animal care and personal responsibility.";
quotes[1][1] = "El Alsson American School Curriculum Coordinator";

quotes[0][2] = "Middle school teachers have commented casually and formally about the change in some of the students who attended the weekend trip; [they are] <strong>much more able to collaborate and respect one another.</strong>";
quotes[1][2] = "El Alsson American School Curriculum Coordinator";

quotes[0][3] = "As accompanying teachers it is rare that we are able to really enjoy residential school trips but your <strong>thorough planning</strong> of the weekend's activities and your <strong>\"hands on\" leadership</strong> made this trip very different.";
quotes[1][3] = "Modern English School Secondary Deputy Headteacher";

quotes[0][4] = "The children <strong>thoroughly enjoyed their time</strong> at Kan Yama Kan Village and have come back to school <strong>full of new ideas</strong> that they have been able to pass on to those students who were unable to make the trip.";
quotes[1][4] = "British School in Cairo Headmaster";

quotes[0][5] = "Nothing was too much trouble to sort out and this played its part in helping our stay to be such an <strong>enjoyable as well as enlightening experience.</strong>";
quotes[1][5] = "British School in Cairo Principal";

quotes[0][6] = "To our delight, the trip was <strong>not just a success, but very informative</strong>, interesting and both our children came home in the best condition possible.";
quotes[1][6] = "British School in Cairo Parent";

quotes[0][7] = "I am in awe of the vision you have for <strong>connecting students with their environment</strong> through your center.  This visit has me excited about the start of a new year and re-energized to work at <strong>strengthening our environmental initiatives</strong> with students and infusing sustainability into our curriculum.";
quotes[1][7] = "Cairo American College Teacher (after an introductory visit)";

quotes[0][8] = "During their time there, our students were engaged in conceptualizing and actualizing a project that would contribute to <strong>making the world a better place.</strong> Along the way in this new setting they developed understandings of who they were as individuals while simultaneously <strong>coming to know other students</strong> with whom they would not normally interact in the school setting.";
quotes[1][8] = "Cairo American College Curriculum Coordinator";

quotes[0][9] = "In the time spent at the center, our students discovered the joys of...<strong>using collaboration</strong> and organizational abilities, being flexible with each other and themselves, examining issues of equity, considering how to shift behaviors to be courteous, thinking about <strong>how to be culturally sensitive</strong>, learning how to listen, engaging in planning and preparation, experiencing persistence and the resulting benefits, being responsible to self and others, <strong>recognizing when leadership opportunities exist</strong> and how to be responsive, learning from each other, and learning about how be supportive and encouraging of others who are timid or less confident.";
quotes[1][9] = "Cairo American College Curriculum Coordinator";

quotes[0][10] = "The camp <strong>rocked!</strong>";
quotes[1][10] = "Camper";

quotes[0][11] = "This camp is <strong>HOT!</strong>";
quotes[1][11] = "Camper";

quotes[0][12] = "Camp was <strong>amazing!</strong> I wish I could stay here all year long. I can't wait until next year. <strong>The activities were great</strong> and I loved the drum circle.";
quotes[1][12] = "Camper";

quotes[0][13] = "An <strong>amazing camp!</strong> Here I personally gained a lot of skills, but more importantly <strong>new friendships.</strong>";
quotes[1][13] = "Camper";

quotes[0][14] = "Absolutely fabulous! I am definitely repeating this. <strong>I hope to be a counselor next year.</strong> This camp has so much to offer. Do not miss this opportunity.";
quotes[1][14] = "Camper";


function showFeedback(){
	// generate a random number within the length of the array
	var rand = Math.floor(Math.random()*quotes[0].length)
	// put the text at that index into an element with id "quote_text"
	document.getElementById("quote_text").innerHTML = (quotes[0][rand]);
	// and put the name into an element with id "quote_by"
	document.getElementById("quote_by").innerHTML = ("&ndash;"+quotes[1][rand]);
}