//store the quotations in arrays
quotes = new Array(2);
authors = new Array(2);



quotes[0] = "I believe we are the only company in the world that develops, patents and sells the patented products via the re-seller with their own brand, without anyone knowing that we are behind the invention.";
authors[0] = "Timo Äärinen, CEO, Wonderwell's";

quotes[1] = "Your satisfaction is a guarantee of tomorrow for us.";
authors[1] = "Timo Äärinen, CEO, Wonderwell's";



//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<I>" + "\"" + quotes[index] + "\"</I>\n");
document.write(" " + "<P>" + authors[index] + " \n");

//done
