/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 37;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title=" (Ralph Waldo Emerson) ";
body="Every artist was first an amateur.";
}
if (quotes==1) {
title=" (Basic Ergonomics ) ";
body="Remember to keep you computer monitor at least an arms length away.";
}
if (quotes==2) {
title=" (Albert Einstein) ";
body="Your imagination is your preview of life's coming attractions.";
}
if (quotes==3) {
title=" (George Elliot) ";
body="It's never too late to become what you might have been.";
}
if (quotes==4) {
title=" (Basic Ergonomics ) ";
body="Keep your forearms level when using a computer keyboard.";
}
if (quotes==5) {
title=" (Albert Einstein) ";
body="Imagination is more important than knowledge.";
}
if (quotes==6) {
title=" (Mahatma Ghandi) ";
body="There is more to life than increasing its speed.";
}
if (quotes==7) {
title=" (Aldous Huxley) ";
body="Happiness is not achieved by the conscious pursuit of happiness; it is generally the by-product of other activities.";
}
if (quotes==8) {
title=" (Basic Ergonomics ) ";
body="Consider an external keyboard if you use a laptop over long periods of time. This will ensure that your monitor is at the correct distance.";
}
if (quotes==9) {
title=" (Kahil Gibran) ";
body="The significance of a man is not in what he attains but in what he longs to attain.";
}
if (quotes==10) {
title=" (Yogi Berra) ";
body="If you don't know where you are going, you'll end up someplace else.";
}
if (quotes==11) {
title=" (Viktor Frankl) ";
body="Life can be pulled by goals just as surely as it can be pushed by drives.";
}
if (quotes==12) {
title=" (Henry Ford) ";
body="There is no happiness except in the realization that we have accomplished something.";
}
if (quotes==13) {
title=" (Basic Ergonomics ) ";
body="Place your desk lamp on the opposite side of your writing hand to eliminate shadows.";
}
if (quotes==14) {
title=" (Francis Bacon) ";
body="A wise man will make more opportunities than he finds.";
}
if (quotes==15) {
title=" (Logan Pearsall Smith) ";
body="There are two things to aim at in life; first to get what you want, and after that to enjoy it. Only the wisest of mankind has achieved the second.";
}
if (quotes==16) {
title=" (Democritus) ";
body="Happiness resides not in posessions and not in gold; the feeling of happiness dwells in the soul.";
}
if (quotes==17) {
title=" (Benjamin Franklin) ";
body="Energy and persistence conquer all things.";
}
if (quotes==18) {
title=" (Thomas Edison) ";
body="If we all did the things we are capable of, we would astound ourselves.";
}
if (quotes==19) {
title=" (Basic Ergonomics ) ";
body="Place you phone on the opposite side of your writing hand.";
}
if (quotes==20) {
title=" (Samuel Johnson) ";
body="Exert your talents, and distinguish yourself, and don't think of retiring from the world, until the world will be sorry that you retire.";
}
if (quotes==21) {
title=" (Mark Twain ) ";
body="You cannot depend on your eyes when your imagination is out of focus.";
}
if (quotes==22) {
title=" (Victor Hugo) ";
body="Inspiration and genius--one and the same.";
}
if (quotes==23) {
title=" (Robert F. Kennedy) ";
body="You're happiest while you're making the greatest contribution.";
}
if (quotes==24) {
title=" (J. Petit Senn) ";
body="Happiness is where we find it, but rarely where we seek it.";
}
if (quotes==25) {
title=" (George Santayana) ";
body="Knowledge of what is possible is the beginning of happiness.";
}
if (quotes==26) {
title=" (Basic Ergonomics ) ";
body="To lessen neck strain, ensure that you hold your head in a neutral position and the top edge of your monitor is at eye level.";
}
if (quotes==27) {
title=" (Doug Firebaugh) ";
body="Every day do something that will inch you closer to a better tomorrow.";
}
if (quotes==28) {
title=" (Ralph Waldo Emerson) ";
body="Insist on yourself. Never imitate.";
}
if (quotes==29) {
title=" (James Russel Lowell ) ";
body="Solitude is as needful to the imagination as society is wholesome for the character.";
}
if (quotes==30) {
title=" (Joseph Joubert) ";
body="He who has imagination without learning, has wings and no feet.";
}
if (quotes==31) {
title=" (French Proverb) ";
body="Hope is the dream of a man awake.";
}
if (quotes==32) {
title=" (Latin Proverb) ";
body="Believe that you have it, and you have it.";
}
if (quotes==33) {
title=" (Confucius) ";
body="The man of virtue makes the difficulty to be overcome his first business, and success only a subsequent consideration.";
}
if (quotes==34) {
title=" (Finnish Term) ";
body="Sisu - strength of will, determination, perseverance, and acting rationally in the face of adversity.";
}
if (quotes==35) {
title=" (Danish Proverb) ";
body="The gem cannot be polished without friction, nor man be perfected without trials.";
}
if (quotes==36) {
title=" (Sheryl Crow - Soak up the Sun)";
body="It's not having what you want, It's wanting what you've got.";
}



document.write('<div style="position:absolute;left:220px;top:5px;">');
document.write('<strong>' + body + '</strong>');
document.write(''+ title +'');
document.write('</div>');

