<!--../photos/140008asm.jpg
adImages = new Array("photos/140008asm.jpg" ,"photos/140008bsm.jpg" ,"photos/140008csm.jpg" , "photos/140008dsm.jpg" )
thisAd = 0
imgCt = adImages.length 

function rotate() {
if (document.images) {
thisAd++
if (thisAd == imgCt) {
thisAd = 0
}
document.adBanner.src=
	adImages[thisAd]
	setTimeout("rotate()", 3 * 1000)
	}
}
//-->