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

//store the quotations in arrays

images = new Array(5);

images[0] = "<a href = 'candle_promotions.php'><img src='images/promo-l/promo-l-1.jpg' alt='Visit Computer Hope'></a>";
images[1] = "<a href = 'candle_promotions.php'><img src='images/promo-l/promo-l-2.jpg' alt='Visit Computer Hope'></a>";
images[2] = "<a href = 'candle_promotions.php'><img src='images/promo-l/promo-l-3.jpg' alt='Visit Computer Hope'></a>";
images[3] = "<a href = 'candle_promotions.php'><img src='images/promo-l/promo-l-4.jpg' alt='Visit Computer Hope'></a>";
images[4] = "<a href = 'candle_promotions.php'><img src='images/promo-l/promo-l-5.jpg' alt='Visit Computer Hope'></a>";

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

document.write(images[index]);


