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

//store the quotations in arrays

images = new Array(5);

images[0] = "<a href = 'beeswax-treasure-heart-candle-q25-p-99.html'><img src='images/promo-c-d/promo-c-d-1.jpg' alt='Beeswax Treasure Heart Candle'></a>";
images[1] = "<a href = 'pillars-round-pillars-c-23_25.html'><img src='images/promo-c-d/promo-c-d-2.jpg' alt='Flowered Round Beeswax Pillars'></a>";
images[2] = "<a href = 'beeswax-treasure-pyramid-candle-q27-p-100.html'><img src='images/promo-c-d/promo-c-d-3.jpg' alt='Beeswax Treasure Pyramid Candle'></a>";
images[3] = "<a href = 'tapers-c-22.html'><img src='images/promo-c-d/promo-c-d-4.jpg' alt='Hand Dipped Pure Beeswax Tapers'></a>";
images[4] = "<a href = 'beeswax-three-angles-candle-holder-q28-p-111.html'><img src='images/promo-c-d/promo-c-d-5.jpg' alt='Three Angel Beeswax Taper Candle Holder'></a>";

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

document.write(images[index]);


