// This jscript randomly pulls a quote from the list below and displays it on page load
// NOTES: 1. do not use double quotes within the quote 2.update the array totals
// last updated 021110 - jms

quotes = new Array(5);
authors = new Array(5);

quotes[0] = "Tom is the grand master of converting 'trying times' into 'buying times.' He'll get you back on top and help you stay on top!";
authors[0] = "Denis Waitley, author of The Psychology of Winning";
quotes[1] = "I ignited my career. I went from making $20,000 per year to almost $20,000 per month since incorporating Mr. Hopkins tactics.";
authors[1] = "Cortney S. Twitty";
quotes[2] = "After listening to Tom in person, we started asking questions and that created a bond... That tactic really made the difference!";
authors[2] = "Dan Janal, Founder, PR LEADS Export Resource Network";
quotes[3] = "I first sat through Tom's one day training... I doubled my sales the following season to $1.5 million.";
authors[3] = "Dr. Kenneth J. Pujdak, CPA, CAA";
quotes[4] = "...Ever since I attended your function, I have increased my income by 40%!";
authors[4] = "James Williams";


//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quote
document.write("<DL>\n");
document.write("<DT>" + "\"" + quotes[index] + "\"\r\n" );
document.write("<DD>" + "~ " + authors[index] + "\r\n");
document.write("</DL>\n");


//done
