// Code to Switch Quotes every

// Set the quote duration (in milliseconds)
var SwitchSpeed = 6000;

var Quote = new Array(); //don't change
var Source = new Array(); //don't change

Quote[1]="It is a true growth experience whether you have been teaching a long while or are still early in your career."; Source[1]="TLP Participant, Cohort 1";
Quote[2]="The Math TLC program has challenged me both personally and professionally.  After less than 18 months I feel like I have been molded into a more well-rounded educator, and not just in the field of mathematics."; Source[2]="Josh Urich, Master's Participant, Cohort 1";
Quote[3]="Learning to analyze the effectiveness of my teaching has not only been rewarding for me, but for my colleagues and ultimately my students."; Source[3]="Amanda Manley, Master's Participant, Cohort 1"
Quote[4]="You will discover a niche for yourself as a teacher leader in mathematics at your own school or in your wider district."; Source[4]="TLP Participant, Cohort 1";
Quote[5]="What you see in students depends on what you're looking for.  The Math TLC program helps teachers see that ALL students are capable of achieving at a high level, and gives them the strategies and content knowledge to get the students there."; Source[5]="Kelly Shank, Master's Participant, Cohort 1";
Quote[6]="I have found a program where I am continually challenged to improve my mathematical ability, my teaching ability, and my leadership ability.  In the past, I have been involved in professional development that has hit one of these areas, but never the combination of all three."; Source[6]="TLP Participant, Cohort 1";
Quote[7]="The instructors are thoughtful in planning activities that are challenging, interesting, and applicable.  I truly feel as if I have found what I have been looking for to take the next step professionally."; Source[7]="Elissa Pitts, TLP Participant, Cohort 1";
Quote[8]="I started this program knowing no one and will be finishing it with a cohort of amazing professional contacts and a close-knit group of friends."; Source[8]="Amanda Manley, Master's Participant, Cohort 1";


// =====================================
// Do not edit anything below this line!
// =====================================

var tss;
var jss = 1;
var qss = Quote.length-1;

function runQuoteSwitcher(){
  document.getElementById("QuoteBox").innerHTML= "<p id=\"quotecontent\">"+Quote[jss]+"</p>"+"<p id=\"quotesource\"> ~"+Source[jss]+"</p>";
    jss = jss + 1;
  	if (jss > (qss)) jss=1;
  tss = setTimeout('runQuoteSwitcher()', SwitchSpeed);
}

