// Instructions to add a new quote.
// Michael Johnson, Echo Reality 2004
//
// This process is very straightforward!
//
// Step 1. Find the line below that reads: var quote= new Array(x)  ..where x is a number.
// This x value is the total number of quotes. Increment this number by 1 when adding a new quote.
//
// Step 2. Take any of the existing lines containing a quote below (they begin with quote[x]="...)
// and recreate it at the bottom of the list of quotes (using copy & paste).
//
// (Note: The quote number n (ie quote[n]) must stay in sequence from zero onwards.
// So if there are 5 quotes, the quote numbers must be in sequence of 0 to 4)
//
// Step 3. The quote information must be in the following format:
// quote[n]="'[quote text]'<BR><BR>[name]<BR>[position], [company]";
// (to make things easier, just copy and paste an exisiting quote and plug in the new information).
//
// :: END OF INSTRUCTIONS ::

var quote= new Array(11) 
quote[0]="Striving for excellence motivates you; <br>striving for perfection is demoralizing... <br>Harriet Braiker"; 
quote[1]="Never be afraid to try something new. <br>Remember, amateurs built the ark; professionals built the Titanic... <br>Author Unknown"; 
quote[2]="Strength is the capacity to break a chocolate bar into four pieces with your bare hands - and then eat just one of the pieces...<br>Judith Viorsts";
quote[3]="Creativity represents a miraculous coming together of the uninhibited energy of the child with its apparent opposite and enemy, the sense of order imposed on the disciplined adult intelligence... <br>Norman Podhoretz";
quote[4]="A common mistake that people make when trying to design something completely foolproof is to underestimate the ingenuity of complete fools...<br>Douglas Adams";
quote[5]="Don't make something unless it is both necessary and useful; but if it is both necessary and useful, don't hesitate to make it beautiful...<br>The Shaker Design Philosophy";
quote[6]="A modern paradox is that it's simpler to create complex interfaces because it's so complex to simplify them...<br>Par Almqvist";
quote[7]="Designers can create normalcy out of chaos;<br> they can clearly communicate ideas through the organizing and manipulating of words and pictures...<br>J Veen - The Art & Science of Web Design";
quote[8]="I saw the angel in the marble and carved until I set him free...<br>Michelangelo";
quote[9]="To think creatively, we must be able to look afresh at what we normally take for granted...<br>George Kneller";
quote[10]="Really we create nothing. <br>We merely plagiarize nature...<br>Jean Baitaillon";
quote[11]="Never tell people how to do things. <br>Tell them what to do and they will surprise you with their ingenuity...<br>George Smith Patton, War as I Knew It, 1947";