//***************************************************************************
//ARH, 09/02/04, BEGIN SCRIPT	 
//***************************************************************************

//***************************************************************************-->
//***************************************************************************-->
//-- 	President image rotation	 -->
//***************************************************************************-->
var N   = (document.layers) ? true:false;                 // netscape 4
var I   = (document.all) ? true:false;                    // ie4+
var DOM = ((document.getElementById)&&(!I))?true:false;   // ns6 etc.

var altText = new Array(12)

altText[0] = "1 of 12"
altText[1] = "2 of 12"
altText[2] = "3 of 12"
altText[3] = "4 of 12"
altText[4] = "5 of 12"
altText[5] = "6 of 12"
altText[6] = "7 of 12"
altText[7] = "8 of 12"
altText[8] = "9 of 12"
altText[9] = "10 of 12"
altText[10] = "11 of 12"
altText[11] = "12 of 12"

var image = new Array(12)

image[0] = new Image(320,240)
image[1] = new Image(320,240)
image[2] = new Image(320,240)
image[3] = new Image(320,240)
image[4] = new Image(320,240)
image[5] = new Image(320,240)
image[6] = new Image(320,240)
image[7] = new Image(320,240)
image[8] = new Image(320,240)
image[9] = new Image(320,240)
image[10] = new Image(320,240)
image[11] = new Image(320,240)


image[0].src = "http://www.fcyba.com/images/photogallery/Rotation2/Kings3.jpg"
image[1].src = "http://www.fcyba.com/images/photogallery/Rotation2/DSC00037.jpg"
image[2].src = "http://www.fcyba.com/images/photogallery/Rotation2/dRockets.jpg"
image[3].src = "http://www.fcyba.com/images/photogallery/Rotation2/dShock.jpg"
image[4].src = "http://www.fcyba.com/images/photogallery/Rotation2/Rockets9.jpg" 
image[5].src = "http://www.fcyba.com/images/photogallery/Rotation2/Rockets10.jpg"
image[6].src = "http://www.fcyba.com/images/photogallery/Rotation2/Rockets7.jpg"
image[7].src = "http://www.fcyba.com/images/photogallery/Rotation2/Rockets6.jpg"
image[8].src = "http://www.fcyba.com/images/photogallery/Rotation2/Kings20.jpg"
image[9].src = "http://www.fcyba.com/images/photogallery/Rotation2/DSC00038.jpg" 
image[10].src = "http://www.fcyba.com/images/photogallery/Rotation2/Davis.jpg"
image[11].src = "http://www.fcyba.com/images/photogallery/Rotation2/2SouthChamps.jpg"

	imageCount = 0;
//----------
function swapImage1() {
	var testing;
	document.imgDisplay1.src = image[imageCount].src;
	document.imgDisplay1.height = image[imageCount].height;
	document.imgDisplay1.alt = altText[imageCount];
	
	imageCount++;
	
	if (imageCount > 11) {
		imageCount = 0;
	}
}

//----------
function startTimer() {
	setInterval("swapImage1()",5500);
}
//***************************************************************************-->
//-- 		END SCRIPT	 -->
//***************************************************************************-->

