//store the quotations in arrays
//author: jptxs@idt.net
quotes = new Array(5);
authors = new Array(5);
quotes[0] = "You were the fastest... WHAT ?";
authors[0] = "Steele";
quotes[1] = "Since when do you need a pedigree to help someone ?";
authors[1] = "Balto";
quotes[2] = "Oh, Balto, I've got a message for your mother";
authors[2] = "Steele";
quotes[3] = "You're taking care of me ?";
authors[3] = "Balto";
quotes[4] = "That's 'cause you're looking at the bowl halfempty";
authors[4] = "Balto";
quotes[5] = "Not a dog, not a wolf. All he knows is what he is not";
authors[5] = "Boris";


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

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