// JavaScript Document

adImages6 = new Array("images/promotional/stlucia1.jpg","images/promotional/stlucia2.jpg","images/promotional/stlucia3.jpg")

thisAd6 = 0

imgCt6 = adImages6.length

function rotate() {
	if(document.images) {
		
		thisAd6++
		if(thisAd6 == imgCt6) {
			thisAd6 = 0
		}
		document.adBanner6.src=adImages6[thisAd6]
		
		setTimeout("rotate()",4*1000)
	}
}

