// JavaScript Document

// Set up the Client Logo image files to be used.
var theImagesC = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImagesC[0] = 'http://www.commsdept.com/img/custquote_whirlpool.gif'
theImagesC[1] = 'http://www.commsdept.com/img/custquote_gwas.gif'
theImagesC[2] = 'http://www.commsdept.com/img/custquote_camden.gif'
theImagesC[3] = 'http://www.commsdept.com/img/custquote_dvlni.gif'


// do not edit anything below this line

var j = 0
var p = theImagesC.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImagesC[i]
}
var whichImageC = Math.round(Math.random()*(p-1));
function chd_randomquote(){
document.write('<img src="'+theImagesC[whichImageC]+'">');
}

//  End -->

