quotes = new Array(5);
authors = new Array(5);
quotes[0] = "Never so happy. Knew what I wanted but could not find a place to get it. Gave this a shot, BINGO. Just what I needed. Will tell any who asks, Go to the Covoc on-line store";
authors[0] = "Mary, Chino Valley, AZ";
quotes[1] = "After searching for about two weeks, I ordered a set of ceiling rails to hang and store backgrounds for my photo studio, and I can't be happier. Thank you!";
authors[1] = "Sylvia, San Francisco, CA";
quotes[2] = "High quality materials and simple and very good instructions were included. I saved hundreds of dollars choosing a Covoc product over a 'studio rated' system. Thank you!";
authors[2] = "Sylvia, San Francisco, CA";
quotes[3] = "Great product, easy to install, quality; and. the staff in customer service makes you feel that your saisfaction and business is important to them.";
authors[3] = "Alrene, Wakefield, RI";
quotes[4] = "Everything about this purchase was easy. The order was filled exactly as promised and the quality of the merchandise met every expectation that we had.";
authors[4] = "Maria, Las Cruces, NM";
quotes[5] = "Thank you so much for making things easy for us to provide our mother the privacy and dignity that she deserves";
authors[5] = "Maria, Las Cruces, NM";
 
index = Math.floor(Math.random() * quotes.length);
 
document.write("<p>" + "\"" + quotes[index] + "\"\n");
document.write("<span>" + "&#126; " + authors[index] + "\n");
