var bannerArray = new Array();
var myCount=0;
// Banner Code Assignment
bannerArray[0] = "<a href=\"news.html\"><img src=\"tests/MaureenOhio.jpg\" border=\"0\" width=\"220\" height=\"288\"></a>";
bannerArray[1] = "<a href=\"news.html\"><img src=\"tests/GigiCalifornia5.jpg\" border=\"0\" width=\"220\" height=\"288\"></a>";
bannerArray[2] = "<a href=\"news.html\"><img src=\"tests/HunterMaryland2.jpg\" border=\"0\" width=\"220\" height=\"288\"></a>";
bannerArray[3] = "<a href=\"news.html\"><img src=\"tests/KathyVirginia.jpg\" border=\"0\" width=\"220\" height=\"288\"></a>";
bannerArray[4] = "<a href=\"news.html\"><img src=\"tests/TinaDallas.jpg\" border=\"0\" width=\"220\" height=\"288\"></a>";
bannerArray[5] = "<a href=\"news.html\"><img src=\"tests/SandraSAfrica2.jpg\" border=\"0\" width=\"220\" height=\"288\"></a>";
bannerArray[6] = "<a href=\"news.html\"><img src=\"tests/MaureenMaryland.jpg\" border=\"0\" width=\"220\" height=\"288\"></a>";

bannerRotate();

function bannerRotate() {

if(myCount > bannerArray.length-1){myCount=0;}

// Write out rotation
	if (document.all){			// it is IE
		document.all.l3.innerHTML=bannerArray[myCount];
	}

	else if (document.layers){	// it is NN

	document.layers.l1.document.layers.l2.document.open();
	document.layers.l1.document.layers.l2.document.write(bannerArray[myCount]);
	document.layers.l1.document.layers.l2.document.close();
	}
setTimeout("bannerRotate()", 25000);
myCount++;
}
