function getMessage() {
// create array of quotes
var ar = new Array(22)
ar[0] = "Do more than spend. Invest!"
ar[1] = "Do more than wish. Believe!"
ar[2] = "The only place to start is where you are."
ar[3] = "To be upset about what you don't have is to waste what you do have."
ar[4] = "Whatever God has given you will create anything else He has promised you."
ar[5] = "Do more than exist. Live!"
ar[6] = "What you picture in your mind, your mind will go to work to accomplish."
ar[7] = "There is little that can withstand a man who can conquer himself!"
ar[8] = "Our business in life is not to get a head of others, but to get a head of ourselves."
ar[9] = "Stop looking at where you are, start looking at where you can be!"
ar[10] = "Don't ask Time where it has gone...Tell it where to go."
ar[11] = "Your road to success should always be under construction."
ar[12] = "Refuse to join the cautious crowd that plays not to lose. Play to win."
ar[13] = "Don't concentrate on risks...concentrate on results."
ar[14] = "No risk is too great to prevent the necessary job from getting done."
ar[15] = "Today's neglect is a damaged tomorrow for the OVCs."
ar[16] = "Love, care and hope are our concern to all the OVCs."
ar[17] = "What will the future bring to these little ones?. They need you and me!"
ar[18] = "Let's bring new dimensions into the lives of OVC through networking."
ar[19] = "...setting the stage to reach beyond today's hopes for the OVCs."
ar[20] = "Realizing a sense of myself as an orphan child needs your concern."
ar[21] = "Nothing is more fulfilling than helping a child grow."

var now = new Date()
var sec = now.getSeconds()
document.random.random.value="Today's Quotes: " + ar[sec % 21]
}
getMessage()
