/* 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 = 6;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="~ Jodi Gale";
body="Thank you for your help in placing my order ~ I love the feeling your signs create in our home.";
}

if (quotes==1) {
title="~ Candace Gingery";
body="I have ordered two missionary plaques from you and was very pleased with them. I love your work!";
}

if (quotes==2) {
title="~ Susan Sanders";
body="Our children love to move their names each week on our Family Home Evening board.  It's a beautiful addition to our home.";
}

if (quotes==3) {
title="~ Heather";
body="I received the lettering today. It is already on the wall in his bedroom, and it looks GREAT! I cannot tell you how happy I am with how it turned out. I will be back for more very soon.";
}

if (quotes==4) {
title="~ Kae Covington";
body="Thanks again for the wonderful sign. It looks even more beautiful than I imagined!";
}

if (quotes==5) {
title="~ Tracy Baughman";
body="I can tell you appreciate your customers by the customer service and quality of your work. This is the fourth sign I have ordered from you. I love your work!";
}


document.write('<div align=left>');
document.write(''+ body +'<br><br>');
document.write('<strong>' + title + '</strong>');
document.write('</div>');
