function quote()
{
sayings = new Array()
sayings[0] = "Rest if you must, but don't you quit"
sayings[1] = "Quitters never win and winners never quit"
sayings[2] = "A person is a person, no matter how small"
sayings[3] = "There is no free lunch"
sayings[4] = "Whatever you do, do your best"
sayings[5] = "Genius is 10% inspiration and 90% perspiration"
sayings[6] = "Make a difference, help a child"
sayings[7] = "Aim for the stars"
sayings[8] = "A journey of a thousand miles begins with one step"
sayings[9] = "Just walk beside me and be my friend (A. Camus)"
sayings[10] = "Everyone needs time to think and learn."
sayings[11] = "It's okay to make mistakes.  That's the way we learn."
sayings[12] = "We each learn in our own ways, by our own time clocks."
sayings[13] = "It's intelligent to ask for help.  No one need do it alone."
sayings[14] = "We can do more and learn more when we're willing to risk."
sayings[15] = "Life is not always easy.  It can call for a stretch."
sayings[16] = "We must each live our own life.  No one can do it for us."
sayings[17] = "It is not possible to know the full potential of a person."
sayings[18] = "The hardest part of any job can be finishing it."

return sayings[Math.floor(sayings.length*Math.random())]
}

