// JavaScript Document


var Quote=new Array() // do not change this!

Quote[0] = "<i>\"You have products people can't find anywhere else, except in Europe.\"</i>";
Quote[1] = "<i>\"Whenever I wear one of your English lace scarves, i feel beautiful and elegant.  And i always get compliments.\"</i>";
Quote[2] = "<i>\"I come home from work and see it on the table and smile.\"</i> <br> &nbsp; &nbsp; &nbsp; &nbsp;  (From a customer who bought a Scottish lace tablecloth)";
Quote[3] = "<i>\"I use the tablecloth constantly, then just throw in the washer, line dry, then put it back on the table and it looks fantastic.  Hasn't fallen apart or shrunken like other products that are out there.\"</i> <br> &nbsp; &nbsp; &nbsp; &nbsp; (From a woman who bought a portuguese tablecloth)";
Quote[4] = "<i>\"I love the kitchen towels from France.  My husband and i bought some in France on our honeymoon and i never thought i would find them here.  But the towels are indestructible.  They are 'husband-proof'. Thank you for having such nice products.\"";




var Q = Quote.length;
var whichQuote=Math.round(Math.random()*(Q-1));
function showQuote(){document.write(Quote[whichQuote]);}
showQuote();

