imagecounter = 1;

function swapBannerImage() {

	if (imagecounter == 1) {

			imagecounter = 2;
 
 	}

	setTimeout("swapBannerImage()", 3000);

}