// 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(6) 
quote[0]="One of the most interesting courses I have attended. Took away a lot from the course."; 
quote[1]="This was a great experience - because of the dedication and passion of Bronwyn."; 
quote[2]="Well presented and well-informed facilitator. Eyeopener!!";
quote[3]="Consideration should be given to delivering this material to all permanent employees, at all levels.";
quote[4]="Bronwyn is a wealth of knowledge.";
quote[5]="One of the most worthwhile courses I have done and got more out of it than I expected to get.";
quote[6]="Bronwyn possesses a broad range of knowledge and experience that enhances her delivery.";
quote[7]="This was perhaps the most enjoyable and relevant course I have done with our company.";
quote[8]="Bronwyn Trimble is an excellent facilitator - her style and the information she shares is unique but amazingly effective.";
quote[9]="All managers and team leaders should do this training with their teams.";
quote[10]="Great delivery, unlike most training, with an emphasis on the individual, no matter what level.";
quote[11]="I found the material and activities interesting, relevant and informative...and, helpful.";
