<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = '../ads/cc_ad_01.jpg'
theImages[1] = '../ads/cc_ad_02.jpg'
theImages[2] = '../ads/cc_ad_03.jpg'
theImages[3] = '../ads/cc_ad_04.jpg'
theImages[4] = '../ads/cc_ad_05.jpg'
theImages[5] = '../ads/cc_ad_06.jpg'
theImages[6] = '../ads/cc_ad_07.jpg'
theImages[7] = '../ads/cc_ad_08.jpg'
theImages[8] = '../ads/cc_ad_09.jpg'
theImages[9] = '../ads/cc_ad_10.jpg'
theImages[10] = '../ads/cc_ad_11.jpg'
theImages[11] = '../ads/cc_ad_12.jpg'
theImages[12] = '../ads/cc_ad_13.jpg'
theImages[13] = '../ads/cc_ad_14.jpg'
theImages[14] = '../ads/cc_ad_15.jpg'
theImages[15] = '../ads/cc_ad_16-225.jpg'
theImages[16] = '../ads/cc_ad_17-225.jpg'
theImages[17] = '../ads/cc_ad_18-225.jpg'
theImages[18] = '../ads/cc_ad_19-225.jpg'
theImages[19] = '../ads/cc_brand_ad01_sm_225.jpg'
theImages[20] = '../ads/cc_ad_23_225.jpg'



// do not edit anything below this line

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));
function showImage(){
document.write('<img border=0 width=225 height=302 src="'+theImages[whichImage]+'">');
}

//  End -->