window.onload = rotate;

var thisAd= 0;
function rotate() {
	var adImages = new Array("http://ecoautocleanatl.com/wp-content/themes/thesis_18/custom/images/10.jpg",
							 "http://ecoautocleanatl.com/wp-content/themes/thesis_18/custom/images/1.jpg",
							 "http://ecoautocleanatl.com/wp-content/themes/thesis_18/custom/images/2.jpg",
							 "http://ecoautocleanatl.com/wp-content/themes/thesis_18/custom/images/3.jpg",
							 "http://ecoautocleanatl.com/wp-content/themes/thesis_18/custom/images/4.jpg",
							 "http://ecoautocleanatl.com/wp-content/themes/thesis_18/custom/images/5.jpg",
							 "http://ecoautocleanatl.com/wp-content/themes/thesis_18/custom/images/6.jpg",
							 "http://ecoautocleanatl.com/wp-content/themes/thesis_18/custom/images/7.jpg",
							 "http://ecoautocleanatl.com/wp-content/themes/thesis_18/custom/images/8.jpg",
							 "http://ecoautocleanatl.com/wp-content/themes/thesis_18/custom/images/9.jpg"
							 
							 );
	thisAd++;
	if(thisAd == adImages.length){
	thisAd = 0;		
	}
	document.getElementById("adBanner").src=adImages[thisAd];
	
	setTimeout(rotate, 3 * 1000);
}
