var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

  Quotation[0] = "Before you make a choice, it's playing you<br /><br />...after you make the choice, you're playing it.";

  Quotation[1] = "If you have a good idea<br /><br />...don't do it";

  Quotation[2] = "The key idea is that there is always something, you just to need to commit to the moment.";

  Quotation[3] = "Pay Attention";

  Quotation[4] = "Funny<br /><br />...brave<br /><br />...captivating.";

  Quotation[5] = "Acting, rather than pretending, is taking appropriate action moment to moment.";

  Quotation[6] = "The Buddhist definition of action -   <br /><br />working appropriately moment to moment with a consciousness of form.";
  Quotation[7] = "kelmanworks opens your eyes to an incredible world that exists all around us. It then gives you the ability to explore it freely";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
