//constructors
function slideShow() {
	this.slideArray = new Array();
	this.dynamicContentOn = true;
	this.parentElement = null;
	this.targetPageElement = null;
	this.currentIndexShown = 0;
	this.browserName = 'msie';
	this.browserVersion = '6.0';
	this.featureWebDir = "";
	this.showEnabled = false;
}

slideShow.prototype.initShow = function() {

	if(this.showEnabled == true) {
		currentList = this.slideArray; 
		currIndex = this.currentIndexShown;
		currIndex++;
		if(currIndex >= currentList.length) { currIndex = 0; }
		
		
		if(currentList != null) {
			currentFeature = currentList[currIndex];
			featureUrl = this.featureWebDir + currentFeature + '?0=0';
			rpcLib.doIFrameRpcCall(featureUrl, this.targetPageElement.id );
			//window.open(featureUrl, this.targetPageElement.id,'')
			
		}
		this.currentIndexShown = currIndex;
	}
	setTimeout("slideShow.initShow()",7000);

}