/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 7;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="What Our Clients Say About Us";
body="My enrollment in the CAN program helped me to polish up my cover letter and resume during a workshop and through individual counseling. It really is an invaluable program";
}

if (quotes==1) {
title="What Our Clients Say About Us";
body="The most exciting practice is mock interviews. With reviewing, I was aware of my strengths and weaknesses for interviews.";
}

if (quotes==2) {
title="What Our Clients Say About Us";
body="Taking these computer courses has changed my resume and given me a door back into the working world.";
}

if (quotes==3) {
title="What Our Clients Say About Us";
body="The program gave me the knowledge, tools, resources and direction I needed to successfully regain full-time employment";
}

if (quotes==4) {
title="What Our Clients Say About Us";
body="I had been searching for a job for a few months without doing the right thing until the employment coaches at JobStart enlightened me, and the job came just like that.";
}

if (quotes==5) {
title="What Our Clients Say About Us";
body="During the program, I acquired job search, resume and interview skills, I gained confidence, and appreciate every aspect of my training at JobStart.";
}

if (quotes==6) {
title="What Our Clients Say About Us";
body="Thanks to all I learnt at JobStart, I got the job that I dreamt about since my first day in Canada.";
}


document.write('<div align=left>');
document.write('<strong>' + title + '</strong><br><br>');
document.write(''+ body +'');
document.write('</div>');
