// JavaScript Documentwindow.onload = rotate;var adImages = new Array("../images/market_rv.jpg","../images/market_comfurn.jpg");var thisAd = 0;function rotate() {	thisAd++;	if (thisAd ==adImages.length) {		thisAd = 0;			}	document.getElementById("Banner3").src = adImages[thisAd];		setTimeout("rotate()", 3 * 1000);	}var adImages = new Array("../images/market_marine.jpg","../images/market_retail.jpg");var thisAd = 0;function rotate() {	thisAd++;	if (thisAd ==adImages.length) {		thisAd = 0;			}	document.getElementById("Banner2").src = adImages[thisAd];		setTimeout("rotate()", 3 * 1000);	}var adImages = new Array("../images/capib_cs2.jpg","../images/capib_trucks.jpg","../images/capib_conv.jpg","../images/capib_cnc.jpg","../images/capib_lab.jpg","../images/capib_dies.jpg", "../images/capib_shred.jpg");var thisAd = 0;function rotate() {	thisAd++;	if (thisAd ==adImages.length) {		thisAd = 0;			}	document.getElementById("Banner2").src = adImages[thisAd];		setTimeout("rotate()", 2 * 1000);	}