window.onload = rotate;

var HD_Images = new Array("HD_Pics/GA_ATTC.JPG", 
			  "HD_Pics/GA_booth_NAB95.jpg",
			  "HD_Pics/Aldo_Unloading_ATTC.JPG",
			  "HD_Pics/THE_GA.JPG",
			  "HD_Pics/terry_with_group_emmy_j.jpg"
			  );

var thisPic = 0;

function rotate() {

	thisPic++;
	if (thisPic == HD_Images.length) {
		thisPic = 0;
	}
	
        document.getElementById("HD_Banner").src = HD_Images[thisPic];

	setTimeout("rotate()", 6*1000);

}