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

//store the quotations in arrays

images = new Array(5);

images[0] = "<a href = 'beeswax-standing-star-candle-q22-p-121.html'><img src='images/promo-c-c/promo-c-c-1.jpg' alt='Beeswax Standing Star Candle'></a>";
images[1] = "<a href = 'beeswax-treasure-shell-candle-q50-p-102.html'><img src='images/promo-c-c/promo-c-c-2.jpg' alt='Beeswax Treasure Shell Candle'></a>";
images[2] = "<a href = 'pillars-octagon-oval-pillars-c-23_30.html'><img src='images/promo-c-c/promo-c-c-3.jpg' alt='Octagon and Oval Beeswax Pillar Candles'></a>";
images[3] = "<a href = 'tapers-c-22.html'><img src='images/promo-c-c/promo-c-c-4.jpg' alt='Hand Dipped Pure Beeswax Taper Candles'></a>";
images[4] = "<a href = 'beeswax-floating-bee-on-daisy-q51-p-109.html'><img src='images/promo-c-c/promo-c-c-5.jpg' alt='Floating Beeswax Bee on Daisy Flower Candle'></a>";

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

document.write(images[index]);


