var aImage = null;
var nSlide = 0;
var oSlide = null;
var sSlideShowUrl = null;

function slideShow(){
	oSlide.src = sSlideShowUrl + aImage[nSlide++];
	nSlide %= aImage.length;
	oTimeOut = setTimeout("slideShow();", 3000);
}

function initSlideShow(p_sSlideShowUrl, p_aImage){
	oSlide = document.getElementById("slide");
	if(oSlide != null){
		aImage = p_aImage;
		sSlideShowUrl = p_sSlideShowUrl;
		slideShow();
	}
}

