/* 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 = 12;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Dennie Hughes - USA TODAY";
body="The Absolute tastiest Lollipops ever...";
}

if (quotes==1) {
title="Charmaine C. - CA";
body="ALL my kids look forward to their Candy Creek (sugar free) Lollipop treat.";
}

if (quotes==2) {
title="Kathleen L. - NJ";
body="They just arrived today and not only did she love them, but I did as well!";
}

if (quotes==3) {
title="Stephani G. - MA";
body="I have received the pops and am very satisfied! Thanks for a terrific product.";
}

if (quotes==4) {
title="Sheryl S. - St. Paul";
body="The lollipops are fabulous...";
}

if (quotes==5) {
title="Frank. Z - NC ";
body="They taste just like in the old days. I'll be ordering again from you!";
}

if (quotes==6) {
title="Brene - KY ";
body="Wild Strawberry is the most fabulous sucker that I have ever tasted.";
}

if (quotes==7) {
title="Rick - OR";
body="Thank you so much for your wonderful product, and great customer service.";
}

if (quotes==8) {
title="D. Raymond - NY";
body="...peppermint candies... Outstanding! I will be a returning customer.";
}

if (quotes==9) {
title="Carol - OK";
body="...something different and delicious to the child that has everything.";
}

if (quotes==10) {
title="Donna C. - IL";
body="Your flavors are wonderful and very intense. I'll be ordering more.";
}

if (quotes==11) {
title="Michelle - FL";
body="Just wanted to let you know we would be recommending you highly to others!";
}

if (quotes==12) {
title="Susan N - NY";
body="...and I must tell you they are superb. The flavors are delightful.";
}


document.write('"'+ body +'"<br>');
document.write('<strong>' + title + '</strong>');
