var Slides = {
	slideShowTopImageArray : [],
	startIndex : 1,
	imageId : "image-slides",
	images : null,
	slideTime : 6000,
	NextImage : function(){
		if(this.startIndex < this.slideShowTopImageArray.length){
			document.getElementById(this.imageId).src = ImagePath + this.slideShowTopImageArray[this.startIndex];
			this.startIndex++;
			this.StartSlideShow();
		}
		else{
			this.startIndex = 0;
			this.NextImage();
		}
	},
	StartSlideShow : function(){
		if(document.getElementById(this.imageId) != null){
			setTimeout("Slides.NextImage()",this.slideTime);
		}
	}
}