var theImages = new Array()

theImages[0] = '../images/banner/120x600/WheelHangerBanner.jpg'
theImages[1] = '../images/banner/120x600/robincasadybanner2.jpg'
theImages[2] = '../images/banner/120x600/bumperplugs.jpg'
theImages[3] = '../images/banner/120x600/wswd_banner.jpg'
theImages[4] = '../images/banner/120x600/coopercards.jpg'
theImages[5] = '../images/banner/120x600/Whalen-Shift-Knob.jpg'
theImages[6] = '../images/banner/120x600/mad-dog-cookie-banner.jpg'


var ImageLink = new Array()

ImageLink[0] = 'http://www.robincasady.com/ShiftKnobs/WheelHangers.php'
ImageLink[1] = 'http://www.robincasady.com/ShiftKnobs/index.php'
ImageLink[2] = 'http://www.bumperplugs.com'
ImageLink[3] = 'http://www.waltonstreetwebdesign.com'
ImageLink[4] = 'http://coopercards.blogspot.com'
ImageLink[5] = 'http://www.whalenshiftmachine.com'
ImageLink[6] = 'http://www.maddogcookieco.com'

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}

var whichImage = Math.round(Math.random()*(p-1));
var whichImage2 = Math.round(Math.random()*(p-1));
while (whichImage == whichImage2){
	whichImage2 = Math.round(Math.random()*(p-1));
}

function showImage(){
// document.write('<div id="container_bottom_left"><a href="' + ImageLink[whichImage] + '" target="_blank"><img src="' + theImages[whichImage] + '" class="image-5pad_allaround"></a></div>'); //
document.write('<div id="container_bottom_right"><a href="' + ImageLink[whichImage2] + '" target="_blank"><img src="' + theImages[whichImage2] + '" class="image-5pad_allaround"></a></div>');
}
