// JavaScript Document
// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this grey12bold.
// ==============================================
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] = "<span class=grey12bold>Event attendees say…</span><br>If you want info on school-based mentoring and how to apply it, this is the workshop for you.";
Quotation[1] = "<span class=grey12bold>Event attendees say…</span><br>Questions are welcome and treated respectfully.";
Quotation[2] = "<span class=grey12bold>Event attendees say…</span><br>Whether you have a program in place or not, the training not only provided the necessary tools, but the know-how to make them work.";
Quotation[3] = "<span class=grey12bold>Event attendees say…</span><br>YouthFriends is grounded in research and their trainings are based on experience.";
Quotation[4] = "<span class=grey12bold>Event attendees say…</span><br>Whatever YouthFriends is involved in, they do a good job.";
Quotation[5] = "<span class=grey12bold>Event attendees say…</span><br>(I received) lots of tangible things to take back and implement in my program.";
Quotation[6] = "<span class=grey12bold>Event attendees say…</span><br>The entire institute was a winner!";
Quotation[7] = "<span class=grey12bold>Event attendees say…</span><br>The conference was a phenomenal experience!";
Quotation[8] = "<span class=grey12bold>Event attendees say…</span><br>I walked away with new ideas and a renewed sense of purpose.";
Quotation[9] = "<span class=grey12bold>Event attendees say…</span><br>The speakers were highly motivating. I appreciate the many choices of sessions and the quality of the presentations.";


// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
