// JavaScript Document
 var quote = new Array();
 quote[0] = 'We are all motivated by a keen desire for praise, and the better a man is, the more he is inspired to glory. -Cicero';
 quote[1] = 'Along with success comes a reputation for wisdom. -Euripides';
 quote[2] = 'Nothing can stop the man with the right mental attitude from achieving his goal; nothing on earth can help the man with the wrong mental attitude. -Thomas Jefferson';
 quote[3] = 'Keep steadily before you the fact that all true success depends at last upon yourself. -Theodore T. Hunger';
 quote[4] = 'Success is the sum of small efforts, repeated day in and day out. -Robert Collier';
 quote[5] = 'The thing always happens that you really believe in; and the belief in a thing makes it happen. -Frank Loyd Wright';
 quote[6] = 'Try not to become a man of success but a man of value. -Albert Einstein';
 quote[7] = 'If you can imagine it, you can achieve it; if you can dream it, you can become it. -William Arthur Ward ';
 quote[8] = 'Happy are those who dream dreams and are ready to pay the price to make them come true. -Leon J. Suenes';
 quote[9] = 'The way to gain a good reputation, is to endeavor to be what you desire to appear. -Socrates';

 function randomquote() {
    var x=Math.random()*quote.length;
	quote_number =Math.floor(x);
	quote_number_global = quote_number; 
 	return(quote[quote_number])
 }