/**
 * @author FiatLux
 */
/********************************************* edit these values to suit *********************************************/

  var quotes=[
               '<BR>"Josh Cockroft is one of the most passionate and intelligent individuals that I have ever had the privilege in working with. His courage to not conform and the fervor with which he represents his values are traits you rarely see in public officials. He is someone I would trust with any task, confident in his ability to tackle it with excellence and utter humility."<br><br><div class="qname"> - Aaron Watson, Director of Staff Development, TeenPact Leadership Schools<\/div>',
			   '"Josh Cockroft is one of the most capable and effective leaders I have ever worked under. Serving and listening to others is the defining factor of his leadership style.  Josh has the unique ability to see what needs to be fixed and come up with practical solutions for change. The Oklahoma State House of Representatives needs more legislators with the persistance, desire to serve others, resolve, and humility that Josh Cockroft posesses."<br><br><div class="qname"> - Brianna Walden<\/div>',           
               '<BR><BR>"Josh is ripe and ready for public service. He has traveled the country visiting other legislatures, meeting key officials and studying policy. He will bring a fresh perspecitive and voice to the Oklahoma State House. I am a financial supporter and I hope you will be too."<br><br><div class="qname"> - Tim Echols, Founder and President of TeenPact Leadership School<\/div>',
               '"Josh is a very strong leader who will not waver in his convictions in the face of popular opinion. He lives his life as an example to others by taking a stand for what he believes in: less government and true liberty for the people. I have worked closly with Josh and know that he is a man of strong intergrity and good character. He always wants, and works to do what is best for those he is serving. Josh is just the type of person we need in the government today. Vote Cockroft!"<br><br><div class="qname"> - Carolyn Reams<\/div>',
               '<BR><BR>"Josh is a strong and sensible leader who puts the needs of others before his own.  He is compassionate and a superb model of servant leadership."<br><br><div class="qname"> - Michelle Taylor<\/div>'
               ];

   var timer=20*1000; /* this is set to 10 seconds */

/*********************************************************************************************************************/

   var temp;

function showQuote() {
   num=Math.floor(Math.random()*quotes.length);
if(num==temp){
   showQuote();
 }
else {
   document.getElementById('quotes').innerHTML=quotes[num];
   temp=num;
   setTimeout(function(){showQuote()},timer);
  }
 }
if(window.addEventListener){
   window.addEventListener('load',showQuote,false);
 }
else { 
if(window.attachEvent){
   window.attachEvent('onload',showQuote);
  }
 }
