
var element = document.getElementById("quotes"); /* Get the DOM element to display */
var duration = 1500;  /* 1500 millisecond fade = 1.5 seconds */
var steps = 20;       /* number of opacity intervals   */
var delay = 9000;     /* 9 second delay before fading out */

/* set the opacity of the text */
function setOpacity(level) {
    element.style.opacity = level;
    element.style.MozOpacity = level;
    element.style.KhtmlOpacity = level;
    element.style.filter = "alpha(opacity=" + (level * 100) + ");";
  }

/* Fade in first; call the showQuote function; then call the fadeOut function */ 
function fadeIn()
{
  for ( i = 0; i <= 1; i += ( 1 / steps ) )
	{
	 	setTimeout( "setOpacity(" + i + ")", i * duration );
  }
	showQuote();
  setTimeout( "fadeOut()", delay );
}

/* Fades out the text - then calls the fadeIn function to loop infinitely */
function fadeOut()
{
  for ( i = 0; i <= 1; i += ( 1 / steps ) )
  {
    setTimeout( "setOpacity(" + (1 - i) + ")", i * duration );
  }
  setTimeout( "fadeIn()", duration );
}

  /* Create ARRAY to display; add, update or change "quotes" here */
var the_text = new Array()

the_text[0] = "\"The foundation of this philosophy is a Man/Nature relationship.&nbsp; &nbsp; ...[man's] physical and mental endowments, and the influencing force that Nature has upon them.\"";
the_text[1] = "\"I believe in the wisdom of Nature for having observed its manifestations day after day.\"";
the_text[2] = "\"It is important that you recognize not only the beauty of Nature, but what it really means in our everyday life. &nbsp; &nbsp; ... Nature is our sole supplier.\"";
the_text[3] = "\"I believe that one should find in the products of Nature all that our organism needs for its growth and renewal.\"";
the_text[4] = "\"I believe that the numerous transformations sustained by our processed food generally reduce its nutritional value.\"";
the_text[5] = "\"I believe that the nutritional deficiencies caused by the ever increasing refining of our food impairs the activity of our cells.\"";
the_text[6] = "\"I believe that the cellular malfunction affects the quality of our tissues, the efficiency of our organs and finally the state of our health.\"";
the_text[7] = "\"I believe that the majority of our cells are constantly renewing due to the nutrients found in food.\"";
the_text[8] = "\"I believe that the more our food is refined, the more it is devitalized, that is why nowadays it needs to be supplemented.\"";
the_text[9] = "\"Every thought you develop sends an impulse to every tissue, every cell in your body.&nbsp; &nbsp; The body responds, and this way, thought results in physical expression.\"";
the_text[10] = "\"We cannot escape the effects of our thoughts upon our well-being; for, our life is what we think to make it.\"";
the_text[11] = "\"Every thought we have ever produced lies in our storehouse of memory, ideas awaiting our call.\"";
the_text[12] = "\"Thought is an expression of the Creative Intelligence as supplied to man, to every person, if only he will listen and receive and become conscious of the thoughts.\"";
the_text[13] = "\"All the thoughts of the Universe, of this earth at least, are here and crowding in upon us.&nbsp; &nbsp; All we need to do is listen.\"";
the_text[14] = "\"It is well to remember that every thought you produce tends to be given physical expression.\"";
the_text[15] = "\"Man does not have the power to create thought; he becomes conscious of the creative thoughts and directs them in giving expression to his activity.\"";
the_text[16] = "\"This world is blanketed with thoughts.&nbsp; &nbsp; The consciousness simply becomes aware of them and either accepts or rejects them.\"";
the_text[17] = "\"There are many different types of thought: constructive, inventive, creative, optimistic, stimulative, and many other positive thoughts. ...\"";
the_text[18] = "\"... There are also negative types [of thought]: destructive, pessimistic, depressing, hateful, and so forth.&nbsp; &nbsp; Man must choose carefully the thoughts he wishes to entertain.\"";
the_text[19] = "\"Remember, positive thoughts tend to bring much happiness to us and to others, adding to our pleasure of life, while negative thoughts tend to result in a discord of vibrations that will deteriorate the body.\"";
the_text[20] = "\"Cooperative thoughts and forgiveness are neutralizers that will give man inner peace.\"";
the_text[21] = "\"Man must determine to live in harmony with Nature; for, life is what we think to make it.\"";
the_text[22] = "\"Every cell in the body is subjected to the impulse of thought.&nbsp; &nbsp; ...Thus the thought is being transmuted into physical expression.\"";
the_text[23] = "\"Anger is derivative of fear, and fear is one of man's most negative emotions.&nbsp; &nbsp; Those angry thoughts cause the Inner-Consciousness to alert every cell in the body to contract and prepare for flight or fight.\"";
the_text[24] = "\"A thought of friendliness can cause a sense of relaxation throughout the body, and the relaxed body will function more normally.&nbsp; &nbsp; You will not only feel better, but will look better.\"";
the_text[25] = "\"Few people have control of their thoughts.&nbsp; &nbsp; People are prone to produce selfish thoughts and then wonder why others disagree with them. ...\"";
the_text[26] = "\"...Can't you think of the other fellow's welfare some of the time?&nbsp; &nbsp; We truly believe that the success-building power of the Shaklee Philosophy is due to the fact that we share our opportunities with the other fellow.\"";
the_text[27] = "\"Man cannot make progress alone.&nbsp; &nbsp; Progress is the direct result of the service man renders to others &#8212; the greater the service rendered, the greater the progress.&nbsp; &nbsp; It all depends on what you think.\"";
the_text[28] = "\"You must either produce your own directive thoughts, or someone else will produce these thoughts for you.\"";
the_text[29] = "\"A thought is never lost, so guard against the cultivation of a thought that is not true to the type of life you wish to live.\"";
the_text[30] = "\"The future life will be exactly what we think to make it\"";
the_text[31] = "\"Success or failure is wholly dependent upon the thoughts man uses for the guidance of his activities.\"";
the_text[32] = "\"Man is endowed with the power of reason and given dominion over all things pertaining to his own well-being.&nbsp; &nbsp; That is why, in everything you do, I urge the use of Thoughtsmanship.\"";
the_text[33] = "\"[Thoughtsmanship] is a word applied to the method used in directing the expression of man's Life Force &#8212; our lives!&nbsp; &nbsp; ...the thinker uses Thoughtsmanship to direct his life's expression.\"";
the_text[34] = "\"From this moment on, if you will only so determine, life can become an orderly, happy, successful existence, and Thoughtsmanship &#8212; when you understand it &#8212; will lead to this existence.\"";
the_text[35] = "\"Thoughtsmanship is the art of expressing thoughts.\"";
the_text[36] = "\"Every thought created in man's consciousness is expressed in the physical.&nbsp; &nbsp; It is a law of thought transmutation in which every impulse of thought is transmuted into every physical fiber of the body.\"";
the_text[37] = "\"Every conscious movement of the body requires thought direction, and every spoken word should be thoughtfully formed.\"";
the_text[38] = "\"Thoughtsmanship is based upon your ability to receive as much as your ability to give.&nbsp; &nbsp; 'Do unto others, as you would have them do unto you'\"";
the_text[39] = "\"Your future will be exactly what you think to make it; for, new thoughts will soon guide you to new experiences &#8212; experiences anticipated and planned by you.  Many new and bountiful things are in store for you.\"";
the_text[40] = "\"Knowingly or not, you are constantly using Thoughtsmanship in your struggle for existence.\"";
the_text[41] = "\"If you learn to understand what you are doing, life need not be a discouraging struggle.\"";
the_text[42] = "\"Life is a privilege!&nbsp; &nbsp; It is an enjoyable privilege—if you choose to make it so.\"";
the_text[43] = "\"All things start with a thought, so start thinking creatively.&nbsp; &nbsp; Think of something for which it is worth working.\"";
the_text[44] = "\"If, at first, concentrating your thoughts on a single goal proves to be difficult, you should not feel discouraged.&nbsp; &nbsp; Nothing is easy at the start.&nbsp; &nbsp; Still, you must keep your thoughts on your single purpose.\"";
the_text[45] = "\"You must think, and think clearly, about what it is you wish to accomplish.\"";
the_text[46] = "\"Think out a plan to follow, and keep those thoughts in mind; for, those thoughts will guide your future action.\"";
the_text[47] = "\"The marksman knows that his aim must be accurate.&nbsp; &nbsp; The same thing is true of the 'Thoughtsman'.&nbsp; &nbsp; Thinking at random will get him nowhere.&nbsp; &nbsp; He must aim his thoughts at a specific target.\"";
the_text[48] = "\"Our entire life's expression will always conform to the thought pattern we produce.&nbsp; &nbsp; Allow that action to take place.&nbsp; &nbsp; Keep driving toward the goal.\"";
the_text[49] = "\"Thoughtsmanship will actually lead you into expression of a new life.&nbsp; &nbsp; You will produce thoughts in a more orderly and intelligent manner.&nbsp; &nbsp; You will demand and get what you want out of life, and without enduring hardships incurred by careless thought.\"";
the_text[50] = "\"Thousands of others are using Thoughtsmanship in building their success, so proceed with confidence.\"";
the_text[51] = "\"Think things through completely!&nbsp; &nbsp; If it is something that can be corrected, do so at once.&nbsp; &nbsp; ...\"";
the_text[52] = "\"...If it is something that can't be corrected, go around it, but never worry about being unable to make a correction, and never put off correcting something once you know you can.\"";
the_text[53] = "\"Worry is an attribute of fear, and fear should never be tolerated, for it is the greatest cause of failure.&nbsp; &nbsp; If you get in the habit of creating courageous thoughts, then the fear thoughts will be crowded out of your life.\"";
the_text[54] = "\"[The student of Thoughtsmanship] will simply refuse to produce worry thoughts.&nbsp; &nbsp; ...But, the concern will cause him to develop thoughts toward positive remedial action, and this will eliminate all worry at the source.\"";
the_text[55] = "\"The greater the complication, the greater the need for Creative Thought, that's all.&nbsp; &nbsp; Thought changes things, big and small.\"";
the_text[56] = "\"Through Thoughtsmanship, you know that your creative thoughts will be transmuted into physical expression, that within your Inner-Consciousness resides all the power necessary to create the desired conditions.\"";
the_text[57] = "\"Stop passing the buck to someone else.&nbsp; &nbsp; Take over the reins.&nbsp; &nbsp; You are responsible for the expression of your life, so why not direct that life in such a way that the profit goes into your life account?\"";
the_text[58] = "\"Life will be just what you think to make it.\"";
the_text[59] = "\"Your thoughts are your own responsibility.&nbsp; &nbsp; You produce them in your own thought-factory, and you are the production manager.\"";
the_text[60] = "\"Prepare the thought pattern carefully.&nbsp; &nbsp; Use good judgment in its preparation, then hold to those thoughts!&nbsp; &nbsp; Think things through.&nbsp; &nbsp; Build a complete thought pattern\"";
the_text[61] = "\"Once you have changed your manner of thinking &#8212; from wishful or idle thinking to earnest, conscientious, creative thinking &#8212; your Inner-Consciousness will be fully aware of your determination.\"";
the_text[62] = "\"Don't expect miracles from your Inner-Consciousness.&nbsp; &nbsp; Once you have made a demand upon it, through production of Creative Thought, you must be prepared to hang on until you have accomplished your purpose.\"";
the_text[63] = "\"Don't expect to plant the seed one day, and reap the harvest the next.\"";
the_text[64] = "\"Every thought is a seed sewn in fertile soil.&nbsp; &nbsp; Your harvest will be in exact proportion to the care given the plant that springs from that seed.&nbsp; &nbsp; You can cultivate and nurture it, or you can neglect it and let it wither and die.\"";
the_text[65] = "\"If you indulge in careless, wishful thinking, you will express a careless, disorganized life.\"";
the_text[66] = "\"You are the ruling master over your process of mind.\"";
the_text[67] = "\"You have an intelligence with which to control your thoughts, so you must direct the production of creative thoughts.\"";
the_text[68] = "\"To build a healthy, happy, and prosperous life, a man must carefully build a healthy, happy, and purposeful thought pattern &#8212; a pattern he can live by.\"";
the_text[69] = "\"You cannot escape the effect of your thoughts, good or bad; for, little by little they are forming the shape of your future life.\"";
the_text[70] = "\"Your thoughts will absolutely direct your success or failure.\"";
the_text[71] = "\"I have always looked upon evil as backward living.&nbsp; &nbsp; Try spelling 'live' backwards and see what I mean.&nbsp; &nbsp; Thoughtsmanship is going to do away with any tendency you may have toward backward living.\"";
the_text[72] = "\"You are going to live a planned life, a life in which you know where you're going and how to get there.\"";
the_text[73] = "\"Never hold a thought on anything you do not want to happen.\"";
the_text[74] = "\"Stop thinking yourself into failure, but start thinking of the success you know can be.\"";
the_text[75] = "\"Thoughtsmanship is, then, the beginning of human expression of the Inner-Consciousness, the birthplace of success!\"";
the_text[76] = "\"The birthplace of success is in your Inner-Consciousness, but you must plant the thought-seed.\"";
the_text[77] = "\"Plant the seeds of failure, and failure will be expressed; plant the seeds of success, and success is assured.\"";
the_text[78] = "\"The surest road to success is through the application of Thoughtsmanship.\"";
the_text[79] = "\"There is nothing to prevent you from becoming the success you have always longed to be.\"";
the_text[80] = "\"You stand at the doorway of life's treasure vaults.&nbsp; &nbsp; Those treasures are yours for the taking.&nbsp; &nbsp; Don't stand outside looking in.\"";
the_text[81] = "\"Wishful thinking will get you nowhere\"";
the_text[82] = "\"You must determine to use Thoughtsmanship in building your success.\"";
the_text[83] = "\"Success is not made up of what you  hope for, but of what you create.\"";
the_text[84] = "\"The price of success is just one thought after another.\"";
the_text[85] = "\"You have an intelligence with which to control your thoughts, and you are the ruling master over the process of mind, so you must direct the production of creative thoughts.\"";
the_text[86] = "\"Don't just let things happen to happen &#8212; make them happen!\"";
the_text[87] = "\"Life may be influenced by chance if we allow it, but it need not be so affected.&nbsp; &nbsp; There is no need to gamble with our future life.\"";
the_text[88] = "\"Gambling is a product of wishful thinking and cannot be transmuted into productive physical expression.\"";
the_text[89] = "\"I know, it is a common theory that life is a gamble, that 'nothing ventured, nothing gained', but there is a great deal of difference between a venture and a gamble.&nbsp; &nbsp; A venture in business is similar to a carefully laid plan.\"";
the_text[90] = "\"When a venture goes beyond a carefully laid plan it becomes a gamble.\"";
the_text[91] = "\"Life is a venture, and should be planned with utmost care.\"";
the_text[92] = "\"Thoughts are required to construct a plan, so the process of mind should be used in the production of creative thoughts.\"";
the_text[93] = "\"Direct your imagination and build a thought pattern, a plan, that may later become a reality.\"";
the_text[94] = "\"You may produce a plan through the power of your imagination that is complete in every detail and with the assurance it will seek expression in your life.\"";
the_text[95] = "\"Once you have changed your manner of thinking &#8212; from wishful, idle thinking to earnest, conscientious, creative thinking &#8212; your Inner-Consciousness will be fully aware of your determination and the expression of those thoughts in the physical is assured.\"";
the_text[96] = "\"Give as much care to the thought products of the imagination as you would to the products of a dynamite factory, for they are just as powerful and just as dangerous.\"";
the_text[97] = "\"Never imagine a thing you do not want to happen, for those thoughts, too, act as a funnel through which life will be expressed.\"";
the_text[98] = "\"Our lives are directed by the thoughts we produce, so we must direct our thoughts at all times, not just in emergencies.\"";
the_text[99] = "\"Thought is processed in the brain, thereafter that thought is in the custody of your Inner-Consciousness, filed away in the storehouse of memory.\"";
the_text[100] = "\"If you constantly tell your Inner-Consciousness that you have a poor memory and just 'can't remember anything,' you will get exactly what you are asking for, a poor memory.\"";
the_text[101] = "\"Every thought is a prayer.\"";
the_text[102] = "\"Thoughts will remain as a permanent record and will influence your Inner-Consciousness in giving expression to your future life.\"";
the_text[103] = "\"Following the Thoughtsmanship plan may necessitate many changes in your life, but, I assure you, the results will be worth the effort.&nbsp; &nbsp; Yes, worth the effort &#8212; but no greater than the effort!\"";
the_text[104] = "\"We get out of life exactly what we put into our Inner-Consciousness, the birthplace of success.\"";
the_text[105] = "\"Time is always an element you must take into consideration in fulfillment of your desires.&nbsp; &nbsp; Things just don't happen overnight.&nbsp; &nbsp; It takes time for you to prepare yourself as the instrument through which your desires can be expressed.\"";
the_text[106] = "\"Every thought is a seed sown in fertile soil.&nbsp; &nbsp; The harvest yield is up to us.&nbsp; &nbsp; We reap the benefits in life.\"";
the_text[107] = "\"To be a success you must be success-minded.&nbsp; &nbsp; ...You must see yourself on the way up, up.\"";
the_text[108] = "\"Expect to win.&nbsp; &nbsp; The expectation will set a pattern for your accomplishment.\"";
the_text[109] = "\"Our greatest power of attraction is due to the thoughts we broadcast.\"";
the_text[110] = "\"We are affected by the thoughts of others, and our thoughts affect them.\"";
the_text[111] = "\"Thoughts are things that are broadcast pretty much as are the messages of television or radio.&nbsp; &nbsp; Our thoughts travel far and near.&nbsp; &nbsp; Space is no barrier to thought.\"";
the_text[112] = "\"Your Inner-Consciousness has access to the universal storehouse of knowledge.&nbsp; &nbsp; It frequently uses you to express that knowledge.&nbsp; &nbsp; Give it a chance.&nbsp; &nbsp; Give it freedom.&nbsp; &nbsp; Allow this Inner-Consciousness to influence your life.\"";
the_text[113] = "\"The abilities you possess far exceed any expression of life you've ever demanded of yourself thus far.&nbsp; &nbsp; Your limitations exist, yes, but they are certainly not controlled by past experiences.\"";
the_text[114] = "\"It isn't wise, of course, to try to accomplish anything until you know what it is you are trying to accomplish.\"";
the_text[115] = "\"Think of something, anything that is worth working for.&nbsp; &nbsp; What the goal may be is not important at this time as is the fact that you are going to create thought that will allow you to realize that goal.&nbsp; &nbsp; Later, you can set a higher goal.\"";
the_text[116] = "\"You will soon find that once you have been able to plan and reach a certain goal, it is much easier to plan for and reach the next one.\"";
the_text[117] = "\"With the satisfaction derived from attaining a goal, individual confidence increases and becomes evermore daring in setting a more difficult goal in the future\"";
the_text[118] = "\"As confidence and faith in yourself increases, your progress also increases.\"";
the_text[119] = "\"Whatever and wherever the goal may be, you can reach it if you have definitely planned your work and know before you start just how you are going to accomplish your purpose.\"";
the_text[120] = "\"Just thinking about success isn't going to produce an intelligent, comprehensive thought pattern through which your Inner-Consciousness can achieve that success.\"";
the_text[121] = "\"It is no more difficult to do things successfully than it is to do the things that lead to failure, except that the competition may be pushing you toward failure.\"";
the_text[122] = "\"The necessary effort [to do things successfully] will not be in the doing but in the thinking.\"";
the_text[123] = "\"I have always found that the mind is pretty much like a wheelbarrow &#8212; it goes the way it is pushed.&nbsp; &nbsp; Who is pushing your mind around?&nbsp; &nbsp; What decisions have you made today?&nbsp; &nbsp; What definite plans have you prepared?\"";
the_text[124] = "\"If you have failed to make the decision today, you have postponed for another day the accomplishment of the thing that you desire.\"";
the_text[125] = "\"The world will not condemn you for making the wrong decision, but it will condemn you for indecision.\"";
the_text[126] = "\"If you have made the wrong decision, you have at least gained in experience, but if you make no decision at all, you have gained nothing.\"";
the_text[127] = "\"The habit of procrastination simply shunts you onto the side track, where you rust from inactivity.\"";
the_text[128] = "\"Indecision is one sure way to failure.\"";
the_text[129] = "\"Whatever the problem confronting you, you have to think it out and come to a definite determination&nbsp; &nbsp; Choose and start.&nbsp; &nbsp; It is impossible to get anywhere without a start.\"";
the_text[130] = "\"For every accomplishment, someone has to make a decision.\"";
the_text[131] = "\"Every moment of your life you are selling yourself to someone, so you should decide now to sell the best that is in you.\"";
the_text[132] = "\"Decide to take that step forward, then dig in.&nbsp; &nbsp; Get a toehold and be ready for the next step.&nbsp; &nbsp; Each step gives exercise to the muscles of progress.\"";
the_text[133] = "\"If you want success, you must expect it.\"";
the_text[134] = "\"Build determination to accomplish your purpose.\"";
the_text[135] = "\"Set the sails to take advantage of the winds of adversity.\"";
the_text[136] = "\"If a goal isn't worth fighting for, it isn't worth possessing.\"";
the_text[137] = "\"You must ask yourself what is it that you desire most from life?\"";
the_text[138] = "\"The greatest treasure man can possess in this life is to love and be loved.\"";
the_text[139] = "\"Nothing can so fill the soul as the expression of love.\"";
the_text[140] = "\"Through the expression of love of someone, we are able to forget self.&nbsp; &nbsp; We live only to bring happiness to that other person. ...\"";
the_text[141] = "\"...Without the other person, all  of our possessions become but empty dreams, meaningless in themselves.\"";
the_text[142] = "\"Love, man's greatest emotion, is the birthplace of happiness.\"";
the_text[143] = "\"Truly it is more blessed to give love than to receive it.&nbsp; &nbsp; There can be no happiness in life without it.\"";
the_text[144] = "\"Love inspires man to greater accomplishment.&nbsp; &nbsp; It lends purpose to life.\"";
the_text[145] = "\"Love is a sure foundation upon which to build the future.\"";
the_text[146] = "\"Remember, Thoughtsmanship applies to all walks of life, your home life, your social life, and your business life.\"";
the_text[147] = "\"Your health, happiness, and prosperity are dependent upon the use you make of Thoughtsmanship, so begin the preparation of a thought pattern that will direct the expression of a well-rounded, successful life.\"";
the_text[148] = "\"We are selling our thoughts to our loved ones, our friends, our business associates, and all those about us.&nbsp; &nbsp; Produce such thoughts as will bring a pleasing profit.\"";
the_text[149] = "\"Thought builds personality.\"";
the_text[150] = "\"Thoughts, countenances, actions, all shout our worth to the other fellow.\"";
the_text[151] = "\"When you speak, you must give thought to what you say.\"";
the_text[152] = "\"Establish a concordant personality in your home, so that as a couple, as a family, you can think as one.\"";
the_text[153] = "\"When you create a concordant personality in your home, you are building the foundation of your success.\"";
the_text[154] = "\"Keep the process of mind busy producing friendly thoughts.&nbsp; &nbsp; Arouse emotions.&nbsp; &nbsp; Feel friendly, and express that friendly feeling.\"";
the_text[155] = "\"Anyone who masters Thoughtsmanship should have no trouble with friendship.&nbsp; &nbsp; The thought you produce will act as a magnet, attracting friendship as surely as the magnet attracts steel.\"";
the_text[156] = "\"Never try to fool others.&nbsp; &nbsp; You may believe that you can keep your thoughts a secret, but it is astonishing how quickly those secret thoughts are transmitted into physical expression.  Facial expressions, if nothing else, reveal inner thoughts.\"";
the_text[157] = "\"Your character, today, is the sum total of the thoughts you have produced in days past\"";
the_text[158] = "\"You must start producing the thoughts that will build the kind of life you most desire.\"";
the_text[159] = "\"Tell me what your habits are and I will tell you what your thoughts have been.\"";
the_text[160] = "\"Habits are so easily formed, and so hard to break.&nbsp; &nbsp; If you wish to change your habits, you must first change your thoughts.&nbsp; &nbsp; It's that simple.\"";
the_text[161] = "\"We create habits by the repeated production of thought.&nbsp; &nbsp; The more often a thought is produced, the stronger the habit.\"";
the_text[162] = "\"Since we are creatures of habit, we should willfully produce thoughts that will form good ones, then support them with determined thoughts of success.\"";
the_text[163] = "\"You cannot be wrathful or capricious and expect to gain the cooperation of others.&nbsp; &nbsp; Your purpose and motive must be to perfect your service to your fellow man.\"";
the_text[164] = "\"Claim your inheritance, it is yours for the thinking.  Through the production of creative thought, you will be able to achieve your purpose in life.&nbsp; &nbsp; You have the power, you need only to direct it.\"";
the_text[165] = "\"Thoughts produce action.&nbsp; &nbsp; And only through action can you attain that which is worthwhile and desired.\"";
the_text[166] = "\"Your creative powers do not diminish with years.&nbsp; &nbsp; You may start at any age creating the type of life you want to live.&nbsp; &nbsp; It is all in the way you think about it.&nbsp; &nbsp; Your happiness and prosperity awaits you through direction.\"";
the_text[167] = "\"Age is not so much a question of years as it is a question of what we think about age.&nbsp; &nbsp; History proves that the greatest accomplishments throughout the world have been from men past the half-century mark.\"";
the_text[168] = "\"Establish a goal and think out a plan along which to proceed.\"";
the_text[169] = "\"Come to a decision today and start doing things.\"";
the_text[170] = "\"You can never allow fear of a poor start to hold you back.&nbsp; &nbsp; Any kind of start is better than standing still.\"";
the_text[171] = "\"Whatever your mistakes may be, they prove a willingness to try.\"";
the_text[172] = "\"While you are standing still, the world rushes on, and others are accomplishing the things you might have accomplished or might still accomplish.\"";
the_text[173] = "\"The habit of producing creative thought is just as easily formed as the habit of producing wishful thought\"";
the_text[174] = "\"Active thinking requires no more energy than passive thinking\"";
the_text[175] = "\"People judge you by what you have done, not by what you expect to do.\"";
the_text[176] = "\"You must expect the better things in life, but you must build your thought pattern as a guide to the development of such things.\"";
the_text[177] = "\"The steps to your goal must be clearly outlined.\"";
the_text[178] = "\"Plan for the future but do not waste the present.\"";
the_text[179] = "\"Take out of this moment every bit of joy that it affords.\"";
the_text[180] = "\"Refuse to allow a thought that will cause a moment of unpleasantness.\"";
the_text[181] = "\"You can be sure of only this one moment so make the most of it\"";
the_text[182] = "\"Today is actually, but tomorrow can only be theoretical.&nbsp; &nbsp; If you have developed a habit of refusing to live this day, there may be hundreds, yes even thousands, of todays wasted.\"";
the_text[183] = "\"Acquire the habit of weighing your words and actions carefully.&nbsp; &nbsp; If you do this, you will soon lose the habit of criticism and idle gossip.\"";
the_text[184] = "\"You get out of your life, your innermost being, exactly what you put into it.\"";
the_text[185] = "\"Nothing can be accomplished by wishful thinking.&nbsp; &nbsp; You must ask, believing, and your expectations will be a guide to your inner powers.\"";
the_text[186] = "\"Expect failure, and failure will come; for there will be no positive success thoughts to be transmuted into physical expression.&nbsp; &nbsp; In other words, you get exactly what you ask for.\"";
the_text[187] = "\"Have faith in your Inner-Consciousness to direct your life according to the plan you produce in your thoughts.\"";
the_text[188] = "\"You must plant determined thoughts in your Inner-Consciousness and hold them there until they are given physical expression.&nbsp; &nbsp; There is nothing mysterious about it, just a simple law of cause and effect.\"";
the_text[189] = "\"Your worth to the world is the value you place upon yourself.&nbsp; &nbsp; Others accept you at that value.&nbsp; &nbsp; Not the bluff value you try to exhibit, but the true value you place through your process of mind.\"";
the_text[190] = "\"Medicine is what your doctor does FOR you, health is what YOU do for yourself.\"";
the_text[191] = "\"Stress is related to how many hours per day you are in a rush!\"";
the_text[191] = "\"The most expensive treatment is the one that does not work.\"";

/* Set the first quote to quote[0] */
var q = 0;

/* Loop through each quote array element */
function showQuote() 
{
 	document.getElementById( "quotes" ).innerHTML = the_text[q];
 	q++;
	if( q == the_text.length )
	{
 	 	q = 0;
	}
}

/* Start the fading text! */
fadeIn();

