//store the quotations in arrays
quotes = new Array(14);
authors = new Array(14);



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";

quotes[2] = "We have tried Wonderwell's Smarteraser in a classroom which is in use 10 hours a day and are very pleased with the product. It certainly beats trying to keep a clean supply of the old fashion erasers.";
authors[2] = "Larry Kost, Lecturer (Department of Mathematics and Statistics), University of Vermont, USA";

quotes[3] = "We like this company and their useful products due to the flexibility in tayloring the product to our customer needs.";
authors[3] = "Klaus Kafitz, Director, discPROFI GmbH";

quotes[4] = "Great ideas with great people standing behind them.";
authors[4] = "Klaus Kafitz, Director, discPROFI GmbH";

quotes[5] = "Good, innovative products. In business new ideas and solutions are crucial from the re-seller's point of view.";
authors[5] = "Henri Kantola, Sales Director, Aveka Ltd.";

quotes[6] = "I already thought that our whiteboards were finished. Thank you BoardRescue!";
authors[6] = "Tero Kaski, Director, Spiral-Salit";

quotes[7] = "We are only looking for products that are unique and can make a change, because they are innovative. These products have what we look for, in every new product, and idea so simple but so useful and very different to anything else on the market.";
authors[7] = "Allan Lyngsø Lauritsen, Sales Director, X Systems Ltd.";

quotes[8] = "I've done business with Wonderwell's Ltd. for four years now. The entire time the co-operation has been extremely positive. Wonderwell's has brought one interesting product after another to the market and I'm always anxious to get to know the latest innovations.";
authors[8] = "Mirja-Leena Hakamäki, Sales Director, Sininen Kolmio Ltd.";

quotes[9] = "Wonderwell's products have always been consistent in quality. Deliveries have been flexible and fast. On top of that Wonderwell's staff is capable, friendly and helpful. It is a pleasure to do business with them.";
authors[9] = "Mirja-Leena Hakamäki, Sales Director, Sininen Kolmio Ltd.";

quotes[10] = "I have never heard of a company like Wonderwell's that produces new, patented products as if they come from an assembly line.";
authors[10] = "Harri Siuro, Sales Manager, CD-R Mediat";

quotes[11] = "Co-operation with Wonderwell's suits us perfectly. We get all the products with our own labels and our customers get to use the latest product ideas first. It is wonderful to always have new, practical products to offer to our customers and it is our brand that shows.";
authors[11] = "Harri Siuro, Sales Manager, CD-R Mediat";

quotes[12] = "We have used the great ideas of Wonderwell's in our office for years already and they have helped us greatly in our everyday work. The ideas are always simple to use but their helpfulness is very great.";
authors[12] = "Markku Hongisto, CEO, Oy Almidon Ltd.";

quotes[13] = "Every week we wait very anxiously to get some new inventions from Wonderwell's into our office, to help our work and delight our staff with something new.";
authors[13] = "Markku Hongisto, CEO, Oy Almidon Ltd.";



//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