// For: http://www.webdeveloper.com/forum/showthread.php?t=228900

var Quotes = [
  '"Teacherality does an excellent job of putting teachers back in control of their destiny as educators. This course helps teachers reconnect to their original reasons for entering the profession and brings to a conscious level specific strategies that will help them be successful in the classroom." <p><i>Kay Shaw, former Director Staff Development, Aurora Public Schools</i>',
  '"I love to brag about Teacherality. Teacherality has become the spark that is reigniting teachers to teach AND feel successful about it...Teacherality values the struggle teachers face, both personally and professionally, and tackles those issues head on." <p><i>Lori Palladino, Curator, Colorado Springs, CO</i>',
  '"Teacherality is the type of staff development teachers are hungry for in these trying times." <p><i>Kristie Krier, Building Resource Teacher, Denver, CO</i>',
  '"Too good to be true, is what my head keeps repeating. My soul knows Teacherality is what I, we ... need. I love the concept, the design and the personal touches of this unique program. The training was personal, meaningful and purposeful. I can\'t wait to embark on this next step...I\'m in." <p><i>Judy Branch, Third Grade Teacher, Douglas County School District, CO</i>',
  '"In my 12+ years of education, I have never participated in a \'class\' so professionally and personally relevant. Teacherality is long overdue!" <p><i>Rebecca Reed, Curator, Colorado Springs, CO</i>',
  '"After four separate job cuts during my seven year career, I was ready to throw in the towel. Teacherality helped me to find my passion again which lead me to teaching in the first place...to know that I was making a difference in someone\'s life. Teacherality is taking a monumental step to protect our treasured teachers across the state! The program is truly a gift." <p><i>Diane Gaston, Curator, Denver, CO</i>', 
  '"Teacherality gives educators an opportunity to develop effective strategies in the classroom and life, but more importantly, holds them accountable for following through with these strategies to become more effective in the classroom. As a Curator, I\'ve observed noticable changes in participants. Many have realized goals, which up until now were just an idea in the back of their minds, and made them reality." <p><i>Chelsea Rogers, Denver, CO</i>' // NOTE: no comma after last entry
];

var timerOn = false;
var quoteAction;
var QuotePtr = -1;

function ShowQOD() {
  if (!timerOn) { quoteAction = setInterval("ShowQOD()",7500); timerOn = true;}
  QuotePtr++;
  if (QuotePtr < 0) { QuotePtr = Quotes.length; }
  QuotePtr = QuotePtr % Quotes.length;
  document.getElementById('QOD').innerHTML = Quotes[QuotePtr];
}

onload = function() {
  ShowQOD();
}
