<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
var theLinks = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.
theImages[0] = 'http://casecrown.com/magento/media/images/banner1.jpg'
theImages[1] = 'http://casecrown.com/magento/media/images/banner2.jpg'
theImages[2] = 'http://casecrown.com/magento/media/images/banner3.jpg'
theLinks[0] = 'http://www.casecrown.com/netbooks'
theLinks[1] = 'http://www.casecrown.com/http://www.casecrown.com/iphone/wood/iphone-3g-3gs-timber-glider-v2-maple-rosewood'
theLinks[2] = 'http://www.casecrown.com/iphone/wood'

var j = 0
var imageLength = theImages.length;
var preBuffer = new Array()
for (i = 0; i < imageLength; i++){
  preBuffer[i] = new Image()
  preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(imageLength-1));

function showImage(){
document.write('<a href="' + theLinks[whichImage] + '"><img src="'+theImages[whichImage]+'" alt="casecrown-valentines-day-special" width="930" height="396" ></a>');
}

//  End -->

