

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

if (quotes==0) {
title="First Grade Teacher";
body="'Thank you for your help. I got job offers from two schools!'";
name="Barb S.";
}

if (quotes==1) {
title="Assistant Principal";
body="'Mary is an outstanding writer and wonderful to work with. I will recommend you to my collegues'";
name="Franklin W.";
}
if (quotes==2) {
title="HS English Teacher";
body="'You did an outstanding job on my resume. I was interviewed yesterday!'";
name="Tom B.";
}
if (quotes==3) {
title="Kindergarten Teacher";
body="'Thank you very much. Your writing and customer service are second to none!'";
name="Denise R.";
}
if (quotes==4) {
title="Fourth Grade Teacher";
body="'I was hesitent to use a resume service from the internet but I am very happy I did!'";
name="Lisa A.";
}
if (quotes==5) {
title="Middle School Teacher";
body="'I got the job with the local school district. No more commuting! Thank You!'";
name="Brenda P.";
}

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

