// JavaScript Document

<!-- // drop-down menu

  // This global array stores all the quotes. Add as many as you like.
  var quotes = new Array(
    "\"The only thing constant today is the rapidly increasing rate of change.\"<br><br><font color=\"#cccccc\">Dr. Jerry Willbur, The Leadership Mentoring Institute</font>"
    , "\"Today the shelf life of solutions is getting shorter and shorter.\"<br><br><font color=\"#cccccc\">Dr. Jerry Willbur, The Leadership Mentoring Institute</font>"
    , "\"You need to get the right people doing the right things the right way, going in the right direction.\"<br><br><font color=\"#cccccc\">Dr. Jerry Willbur, The Leadership Mentoring Institute</font>"
    , "\"Enlist and engage your people in the change process and it will energize them.\"<br><br><font color=\"#cccccc\">Dr. Jerry Willbur, The Leadership Mentoring Institute</font>"
    , "\"You can't force a tree to grow by tugging on its leaves.\"<br><br><font color=\"#cccccc\">Dr. Jerry Willbur, The Leadership Mentoring Institute</font>"
    , "\"It is not the big that eat the small. It is the fast that eat the slow.\"<br><br><font color=\"#cccccc\">Dr. Jerry Willbur, The Leadership Mentoring Institute</font>"
    , "\"The only way to take charge of change is to create it.\"<br><br><font color=\"#cccccc\">Dr. Jerry Willbur, The Leadership Mentoring Institute</font>"
    , "\"The only thing constant today is the rapidly increasing rate of change.\"<br><br><font color=\"#cccccc\">Dr. Jerry Willbur, The Leadership Mentoring Institute</font>"
    , "\"Whenever you see a successful business, someone once made a courageous decision.\"<br><br><font color=\"#cccccc\">Peter Drucker</font>"
    , "\"Deviate an inch, lose a thousand miles.\"<br><br><font color=\"#cccccc\">An ancient Chinese proverb paraphrased by Dr Willbur to say: “Small deviations accumulate.”</font>"
    , "\"The best way to hit a fast moving target is to lead it.\"<br><br><font color=\"#cccccc\"></font>"
    , "\"Not all of us can do great things, but we can all do small things in a great way.\"<br><br><font color=\"#cccccc\">Mother Teresa</font>"
    , "\"The greatest leadership ability is the ability to see ability in others.\"<br><br><font color=\"#cccccc\"></font>"
    , "\"The high speed bullet train of innovation is leaving the station. Are you on board?\"<br><br><font color=\"#cccccc\"></font>"
    , "\"We must overcome ‘failurephobia’ and learn to fail intelligently. To analyze and then learn from our setbacks is one of the greatest leadership skills. Done correctly, one fails forward toward success.\"<br><br><font color=\"#cccccc\">Dr. Willbur</font>"
    /*, "\"Enlist and engage your people in the change process and it will energize them.\"<br><br><font color=\"#cccccc\">Dr. Jerry Willbur, The Leadership Mentoring Institute</font>"*/
  );
  function GenerateQuote() {
    // Generate a random number based off the total number of quotes.

    // Use a random number (from zero to one) and multiply it by the
    // number of quotes (quotes.length) to get a random number betwen
    // zero and the total number of quotes.
    var quotenumber = Math.random() * quotes.length;

    // Now round the number down to an integer so we can use it as an
    // array index.
    quotenumber = Math.floor(quotenumber);

    // Write the quote.
    document.write(quotes[quotenumber]);
  }

//-->