/*--------------------------------------------------------Title:		Quotes ScriptAuthor:		Javascript KitWebsite:	http://www.javascriptkit.com/	--------------------------------------------------------*/var quotes=new Array()//change the quotes if desired. Add/ delete additional quotes as desired.quotes[0]='There is very little difference between one man and another; but what little there is, is very important. This distinction seems to me to go to the root of the matter.”<p class="quotebyline">--The Will to Believe. The Importance of Individuals, William James</p>'quotes[1]='Our own successes, to be real, must contribute to the success of others.” <p class="quotebyline">--Eleanor Roosevelt</p>'quotes[2]='Decision is a risk rooted in the courage of being free.” <p class="quotebyline">--Paul Tillich</p>'quotes[3]='Our lives are what our thoughts make it.” <p class="quotebyline">--Marcus Aurelius Antonius</p>'quotes[4]='Great effort from great motives is the best definition of a happy life.” <p class="quotebyline">--William Ellery Channing</p>'quotes[5]='Do not judge each day by the harvest you reap, but by the seeds you plant.” <p class="quotebyline">--Robert Louis Stevenson</p>'var whichquote=Math.floor(Math.random()*(quotes.length))document.write(quotes[whichquote])/* Place this in html: <script language="JavaScript1.1" src="scripts/feedback.js"></script>  */