var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "<p><b>Because the children liked the idea of it, they were more engaged...</b></p><p>Children like the idea of imagining they are in an adventure.</p><span>3rd grade classroom teacher, Highland Elementary</span>";
Quotation[1] = "<p><b>My class loved this!</b></p><p>The change of scenery and the \"fun\" things Mr. Marc does made even the most sedentary students want to go \"mountain climbing\".</p><span>1st grade classroom teacher, Highland Elementary</span>";
Quotation[2] = "<p>Many of the students actually had their heart rate elevated. <b>That’s AWESOME!</b><br><br>They don’t get enough opportunities to move around in the classroom. We loved it.</p><span>3rd grade classroom teacher, Interlachen Elementary</span>";
Quotation[3] = "<p>The boys and girls were <b>very excited to do the Mt. Everest each morning</b> and were very disappointed when it wouldn’t continue. Those that come late missed it and were upset if they did.</p><span>Kindergarten classroom teacher, Freedom Shores Elementary</span>";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}