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=\"quote\">\"Best course I\'ve been on in a long time. Very good instructor who was good at explaining difficult concepts.\"</span><p><strong>Rushon L.</strong><br><span class=\"content\">Supervisor</span>";

Quotation[1] = "<span class=\"quote\">\"An excellent instructor who made things clear and easily understood.\"</span><p><strong>Krista H.</strong><br><span class=\"content\">Social Worker</span>";

Quotation[2] = "<span class=\"quote\">\"Fabulous workshop! Everything I learned was new, fresh, timely and research based!\"</span><p><strong>Len B.</strong><br><span class=\"content\">Sales Rep</span>";

Quotation[3] = "<span class=\"quote\">\"I am excited about what this program is doing for my employees, myself, and most importantly, my customers.\"</span><p><strong>Paula C.</strong><br><span class=\"content\">VP Sales</span>";

Quotation[4] = "<span class=\"quote\">\"We appreciate that ELM Associates provided a program that was tailored to both our needs and our budget. The personal touch let us know that we made the right choice.\"</span><p><strong>Gerry K.</strong><br><span class=\"content\">Training Coordinator</span>";

Quotation[5] = "<span class=\"quote\">\"We have a very complex, technical operation run by human beings with human needs. ELM Associates teambuilding training proved to be just the catalyst we needed. It has changed the way we work with each other in a very favorable way!\"</span><p><strong>Lynn J.</strong><br><span class=\"content\">Call Center Representative</span>";

Quotation[6] = "<span class=\"quote\">\"ELM Associates took the time to sit down with us and learn our business. They were able to create a very powerful human relations training that profoundly changed the way our employees interact with each other and our customers. ELM Associates knows what it takes to create a quality training solution.\"</span><p><strong>Pat B.</strong><br><span class=\"content\">Training Manager</span>";

Quotation[7] = "<span class=\"quote\">\"An excellent job in translating fun-filled activities into thought provoking ways to improve staff communication.\"</span><p><strong>Bill J.</strong><br><span class=\"content\">Team Leader</span>";

Quotation[8] = "<span class=\"quote\">\"Your warm, energized style helped our staff feel relaxed and willing to participate. Thanks for your thoroughness in reflection, participation and execution. It was a wonderful event.\"</span><p><strong>Rachel G.</strong><br><span class=\"content\">VP Accounting</span>";

Quotation[9] = "<span class=\"quote\">\"We had been using another training resource for our employee training, but when it failed to increase production we went in search of another provider. ELM Associates helped our staff to increase production by more than 70 per cent. In addition, they remained available to us even after the training.\"</span><p><strong>James B.</strong><br><span class=\"content\">Office Manager</span>";

Quotation[10] = "<span class=\"quote\">\"After ELM Associates trained our staff they returned to the office with renewed energy and commitment. Thanks for your help.\"</span><p><strong>Amanda C.</strong><br><span class=\"content\">Administrative Assistant</span>";

// ======================================
// 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();