//store the quotations in arrays
quotes = new Array(6);
quotes[0] = "Life is what you make it!";
quotes[1] = "VENI, VEDI, VISA: I came, I saw, I did a little shopping.";
quotes[2] = "Have a question? Call us at 904-410-7718";
quotes[3] = "Do what thou wilt, an Ye Harm None, including yourself!";
quotes[4] = "Come on over and Join The Forum.";
quotes[5] = "Greetings from Blessed Be Gifts?";
quotes[6] = "Spring is Here. Make Your Garden into a Showcase!";
quotes[7] = "Give a gift today!";
quotes[8] = "Don't Wait. The time will Never be Just Right!";
quotes[9] = "Join our forum, receive an extra 10% off your purchase!";
quotes[10] = "Order anytime. Even after hours!";
quotes[11] = "Sage, a Spiritual Narcotic!";
//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<DT>" + "\"" + quotes[index] + "\"\n");
//done

