<!--
{
document.write("<p class=\"left\">Quote of the Moment: ")
}

var quote = new Array()
quote[0] = "&quot;If you laid all the Experts in the World end to end they still couldn&#39;t reach a conclusion.&quot; &mdash;Henry Ford"
quote[1] = "&quot;A friend is someone who sees through you and still enjoys the view.&quot; &mdash;William Askinas"
quote[2] = "&quot;You can observe a lot by watching.&quot; &mdash;Yogi Berra"
quote[3] = "&quot;To change and to change for the better are two different things.&quot; &mdash;German Proverb"
quote[4] = "&quot;What good is running if one is on the wrong road?&quot; &mdash;English Proverb"
quote[5] = "&quot;Put an end once and for all to this discussion of what a good man should be, and be one.&quot; &mdash;Marcus Aurelius"
quote[6] = "&quot;Laughter is the shortest distance between two people.&quot; &mdash;Victor Borge"
quote[7] = "&quot;Good friendships are fragile things and require as much care as any other fragile and precious thing.&quot; &mdash;Randolph Bourne"
quote[8] = "&quot;I believe in getting into hot water. &nbsp;I think it keeps you clean.&quot; &mdash;G. K. Chesterton"
quote[9] = "&quot;Insane people are always sure that they are fine. &nbsp;It is only the sane people who are willing to admit that they are crazy.&quot; &mdash;Nora Ephron"
quote[10] = "&quot;The safest way to double your money is to fold it over once and place it in your pocket.&quot; &mdash;Frank Hubbard"
quote[11] = "&quot;It is better to debate a question without settling it than to settle a question without debating it.&quot; &mdash;Joseph Joubert"
quote[12] = "&quot;There is only one thing about which I am certain, and that is there is very little about which one can be certain.&quot; &mdash;W. Somerset Maugham"
quote[13] = "&quot;The best way to have a good idea is to have lots of ideas.&quot; &mdash;Linus Pauling"
quote[14] = "&quot;Truly great friends are hard to find, difficult to leave, and impossible to forget.&quot; &mdash;G. Randolf"
quote[15] = "&quot;Nobody cares if you are miserable, so you might as well be happy.&quot; &mdash;Cynthia Nelms"
quote[16] = "&quot;Computers are useless. &nbsp;They can oly give you answers.&quot; &mdash;Pablo Picasso"
quote[17] = "&quot;Leadership is a potent combination of strategy and character. &nbsp;But if you must be without one, be without the strategy.&quot; &mdash;General H. Norman Schwarzkopf"
quote[18] = "&quot;Common sense is the knack of seeing things as they are, and doing things as they ought to be done.&quot; &mdash;Josh Billings"
quote[19] = "&quot;It is seldom very hard to do one&#39;s duty when one knows what it is, but it is often exceedingly difficult to find this out.&quot; &mdash;Samuel Butler"

var q=Math.random()

if (q<.05)
{
document.write(quote[0] + "</p>")
}
else if (q>=.05&&q<.1)
{
document.write(quote[1] + "</p>")
}
else if (q>=.1&&q<.15)
{
document.write(quote[2] + "</p>")
}
else if (q>=.15&&q<.2)
{
document.write(quote[3] + "</p>")
}
else if (q>=.2&&q<.25)
{
document.write(quote[4] + "</p>")
}
else if (q>=.25&&q<.3)
{
document.write(quote[5] + "</p>")
}
else if (q>=.3&&q<.35)
{
document.write(quote[6] + "</p>")
}
else if (q>=.35&&q<.4)
{
document.write(quote[7] + "</p>")
}
else if (q>=.4&&q<.45)
{
document.write(quote[8] + "</p>")
}
else if (q>=.45&&q<.5)
{
document.write(quote[9] + "</p>")
}
else if (q>=.5&&q<.55)
{
document.write(quote[10] + "</p>")
}
else if (q>=.55&&q<.6)
{
document.write(quote[11] + "</p>")
}
else if (q>=.6&&q<.65)
{
document.write(quote[12] + "</p>")
}
else if (q>=.65&&q<.7)
{
document.write(quote[13] + "</p>")
}
else if (q>=.7&&q<.75)
{
document.write(quote[14] + "</p>")
}
else if (q>=.75&&q<.8)
{
document.write(quote[15] + "</p>")
}
else if (q>=.8&&q<.85)
{
document.write(quote[16] + "</p>")
}
else if (q>=.85&&q<.9)
{
document.write(quote[17] + "</p>")
}
else if (q>=.9&&q<.95)
{
document.write(quote[18] + "</p>")
}
else 
{
document.write(quote[19] + "</p>")
}
-->