// Code to Switch Quotes every

// Set the quote duration (in milliseconds)
var SwitchSpeed = 15000;

var Quote = new Array(); //don't change
var Source = new Array(); //don't change

Quote[1]="Information is not knowledge."; Source[1]="Albert Einstein";
Quote[2]="Always laugh when you can. It is cheap medicine."; Source[2]="Lord Byron";
Quote[3]="The world has the habit of making room for the man whose actions show that he knows where he is going."; Source[3]="Napoleon Hill";
Quote[4]="I hear and I forget, I see and I remember. I do and I understand."; Source[4]="Chinese Proverb";
Quote[5]="Kindness in words creates confidence. Kindness in thinking creates profoundness. Kindness in giving creates love."; Source[5]="Lao-Tzu";
Quote[6]="We are what we repeatedly do. Excellence, then, is not an act, but a habit."; Source[6]="Aristotle";
Quote[7]="One may walk over the highest mountain one step at a time."; Source[7]="John Wanamaker";
Quote[8]="There is real magic in enthusiasm. It spells the difference between mediocrity and accomplishment."; Source[8]="Norman Vincent Peale";
Quote[9]="Whether you think you can or whether you think you cant, youre right!"; Source[9]="Henry Ford";
Quote[10]="Success comes from good judgement. Good judgement comes from experience. Experience often comes from bad judgement."; Source[10]="Anonymous";
Quote[11]="A person who never made a mistake never tried anything new."; Source[11]="Albert Einstein";


// =====================================
// Do not edit anything below this line!
// =====================================

var tss;
var jss = 1;
var qss = Quote.length-1;

function runQuoteSwitcher(){
  document.getElementById("QuoteBox").innerHTML= "<p>"+Quote[jss]+"</p>"+"<p id=\"quotesource\"> ~"+Source[jss]+"</p>";
    jss = jss + 1;
  	if (jss > (qss)) jss=1;
  tss = setTimeout('runQuoteSwitcher()', SwitchSpeed);
}

