//store the quotations in arrays

quotes = new Array(5);
authors = new Array(5);


quotes[0] = "Jasia Media is a very reliable company ... I will continue to contract them ... I am very happy with their exceptional quality of service.";
authors[0] = "A. Perera, One-2-One Charis Ministries";
quotes[1] = "My experience with Jasia Media was excellent.  The quality of service, communication and work is professional.  Their attention to detail in designing something that was personal and unique for me resulted in a website that I am very pleased with.  I would definitely recommend Jasia Media based on my experience."
authors[1] = "Elizabeth Knudson, Composer";
quotes[2] = "Jasia Media provided top notch professional expertise throughout my website upgrades.  Jennifer Frey is highly intelligent, extremely competent, and very generous with her time and knowledge.  Jennifer, I cannot thank you enough for the attention you gave to www.cavelle.net."
authors[2] = "Cavelle Macdonell, BFA, BEd.";
quotes[3] = "Jasia Media quickly helped me realize and revise the proposed design to my liking. I highly recommend Jasia Media's personable, professional and attentive service."
authors[3] = "Derek Warren, Mac Folklore Radio";
quotes[4] = "Just a moment to say thanks for the great job you did...I seem to come in at the top of the list for just about any inquiry on stalking or countermeasures... fantastic."
authors[4] = "M.I.S.";


//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<DL>\n");
document.write("<DT>" + "\"" + quotes[index] + "\"\n");
document.write("<DD>" + "-- " + authors[index].bold() + "\n");
document.write("</DL>\n");