
adImages = new Array("http://www.palrelief.org/palrelief/themes/vekna_blue/images/Palestine_Relief_fund01.jpg",
					 "http://www.palrelief.org/palrelief/themes/vekna_blue/images/Palestine_Relief_fund02.jpg")
//					 "http://www.palrelief.org/palrelief/themes/vekna_blue/images/Palestine_Relief_fund03.jpg")
//quote = new Array("This is Image 1","This is Image 2","This is Image3")

thisAd = 0
imgCt = adImages.length
//quoteCt = quote.length

function rotate() 
{
	if (document.images) 
	{
		if (document.cycle.complete) 
		{
		  thisAd++
		  if (thisAd == imgCt ) //&& thisAd == quoteCt) 
		  {
			thisAd = 0
		  }
		  document.cycle.src = adImages[thisAd];
		  //window.defaultStatus = quote[thisAd];
		}
		setTimeout("rotate()", 3500)
  	}
}

