window.onload = rotate;

var thisAd = 0;

function rotate() {
	var adImages = new Array("IMAGES/peppers.gif","IMAGES/potatoes.gif","IMAGES/rotarydrum_SM.gif","IMAGES/beans.gif","IMAGES/veggie_small.gif",
	"IMAGES/Triangle-XY.gif","IMAGES/bags.gif","IMAGES/Sortex-K_small.gif","IMAGES/carrots.gif",
	"IMAGES/green_beans.gif","IMAGES/layout.gif","IMAGES/beans.gif","IMAGES/Thermo-Versa_Apex_small.gif",
	"IMAGES/pasta.gif");

	thisAd++;
	if (thisAd == adImages.length) {
		thisAd = 0;
	}
	document.getElementById("homepagebanner").src = adImages[thisAd];

	setTimeout(rotate, 8 * 1000);
}
