//store the quotations in arrays
quote = new Array(12);
who = new Array(12);


quote[0] = "Women use the internet to buy clothing more than men: 42% compared with 34%. But then women also buy more groceries online than men too. Some things never change";
who[0] = "";

quote[1] = "The UK's top ten department stores account for 90% of the nation's entire department store business";
who[1] = "";

quote[2] = "La Rinascente department store in Milan once had a window dresser named Giorgio Armani. He went on to work in fashion, apparently";
who[2] = "";

quote[3] = "Good service can transform a mundane shopping experience into an excellent one";
who[3] = "";

quote[4] = "More than 25% of shoppers think that designer items are overpriced. No, really?";
who[4] = "";

quote[5] = "'Fashion is what one wears oneself. What is unfashionable is what other people wear.'";
who[5] = "Oscar Wilde";

quote[6] = "Some 70% of all supermarket purchases are impulse buys. If we did the same in fashion stores, we'd need wardrobes the size of Elton John's";
who[6] = "";

quote[7] = "Don't delay to check your purchases and act quickly if a fault materialises";
who[7] = "";

quote[8] = "Average shopping times: Woman with man – 4 minutes 41 seconds; Woman alone – 5 minutes 2 seconds; Woman with female companion – 8 minutes 51 seconds";
who[8] = "";

quote[9] = "Some 93% of people spend more money that they planned to when they go shopping. No surprises there then.";
who[9] = "";

quote[10] = "There is a saying that you should never go grocery shopping on an empty stomach or mattress shopping when you're tired.  Neither should you go clothes shopping when you're naked. Especially in winter.";
who[10] = "";

quote[11] = "British women spend an average of 8 years of their lives shopping. That's 301 trips to stores a year, 15 of them for shoes.  They spend 48 hours a year just looking in the windows!";
who[11] = "";



//calculate a random index
index = Math.floor(Math.random() * quote.length);
//display the quote
//document.write("<DL>\n");

document.write("<p>" + ""+quote[index])+ "" + " </p>";
document.write("<p class='normal'>" + ""+who[index] + "</p>");