
var quotes = new Array;
quotes[0] = 'He who waits to do a great deal of good at once will never do anything! (Fortune Cookie)';
quotes[1] = 'Practice makes PERMANENT!';
quotes[2] = 'Actions are not something we do but who we are!';
quotes[3] = 'We become what we do - good intentions are only a potential!';
quotes[4] = 'Just because it CAN be done does not mean it SHOULD be done!';
quotes[5] = 'The highest achievement in life is to always act with integrity and honor!';
quotes[6] = 'Mental aging is most prominantly demonstrated when one resists change just because it is change!';
quotes[7] = 'Change is the law of life. And those who look only to the past or present are certain to miss the future. (JFK)';
quotes[8] = 'How we respond to the unexpected changes in our life is a measure of our real character.....';
quotes[9] = 'Let there be Peace on Earth and LET IT BEGIN WITH ME.';
quotes[10] = 'Use a little judgement, taste, and respect at all times!';
quotes[11] = 'Others view us by what they see us do and hear us say.';
quotes[12] = 'Practicing procrastination makes one a skillful procrastinator!';
quotes[13] = 'Doing something one time is not practice - Practice involves repetitions!';
quotes[14] = 'Freedom requires Responsibility!';
quotes[15] = 'Technology CAN serve - all it takes is YOU!';
quotes[16] = 'Music is sound in time that expresses human experience!';
quotes[17] = 'Technology ONLY works if you USE it!';
quotes[18] = 'Let there be Peace on Earth and LET IT BEGIN WITH ME.';

var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])
