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

//store the quotations in arrays

images = new Array(5);

images[0] = "<a href = 'beeswax-beehive-candle-q06-p-132.html'><img src='images/promo-c-a/promo-c-a-1.jpg' alt='Pure Beeswax Beehive Handmade Candle'></a>";
images[1] = "<a href = 'beeswax-rose-embossed-candle-q30-p-107.html'><img src='images/promo-c-a/promo-c-a-2.jpg' alt='Pure Beeswax Rose Embossed Candle'></a>";
images[2] = "<a href = 'aromatherapy-candles-c-33.html'><img src='images/promo-c-a/promo-c-a-3.jpg' alt='Pure Beeswax Aromatherapy Candles with Essential Oils'></a>";
images[3] = "<a href = 'beeswax-rose-large-candle-q19-p-104.html'><img src='images/promo-c-a/promo-c-a-4.jpg' alt='Large Beeswax Rose Candle'></a>";
images[4] = "<a href = 'beeswax-owl-candle-q53-p-129.html'><img src='images/promo-c-a/promo-c-a-5.jpg' alt='Pure Beeswax Owl Candle'></a>";

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

document.write(images[index]);


