<!--
adImages = new Array("simsphoto/Simsfamily1bg.jpg" ,"simsphoto/Simsfamily3bg.jpg" ,"simsphoto/Simsfamily4bg.jpg" , "simsphoto/Simsfamily5bg.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)
	}
}
//-->
