//Javascript Created by Computerhope http://www.computerhope.com

//store the quotations in arrays

images = new Array(5);

images[0] = "<a href = 'beeswax-lotus-candle-q16-p-103.html'><img src='images/promo-c-b/promo-c-b-1.jpg' alt='Beeswax Lotus Candle'></a>";
images[1] = "<a href = 'beeswax-rose-medium-candle-q48-p-108.html'><img src='images/promo-c-b/promo-c-b-2.jpg' alt='Medium Beeswax Rose Candle'></a>";
images[2] = "<a href = 'star-five-point-pillar-h25-p-63.html'><img src='images/promo-c-b/promo-c-b-3.jpg' alt='5 Pointed Star Beeswax Candle'></a>";
images[3] = "<a href = 'votives-c-35.html'><img src='images/promo-c-b/promo-c-b-4.jpg' alt='Pure Beeswax Votive Candles Ten and Twenty Hours'></a>";
images[4] = "<a href = 'beeswax-pear-candle-q52-p-139.html'><img src='images/promo-c-b/promo-c-b-5.jpg' alt='Pure Beeswax Pear Candle'></a>";

index = Math.floor(Math.random() * images.length);

document.write(images[index]);


