thisAd = 0
imgCt = adImages.length

function rotate() 
{
	if (document.images) 
	{
		if (document.adBanner.complete) 
		{
			thisAd++
			if (thisAd == imgCt) 
			{
				thisAd = 0
			}
			document.adBanner.src=adImages[thisAd]
		}
	  	setTimeout("rotate()", intRotateInterval)
  	}
}
	
function newLocation() 
{
	newStr = adURL[thisAd];
	window.open(newStr);
}

