var exhibitionist_vi_mainImage_noEffect = function(){
	this.itemsArray = Array();
	this.lastItem = null;
	this.init = function(object,holder){
		this.holder = holder;
		this.object = object;
	}
	this.start = function(){
		for(imageNumber in this.object.mainItems){
			//get the copy
			var currentItem = this.object.mainItems[imageNumber];
			//change the copy
			//save the copy
			this.itemsArray[this.itemsArray.length] = currentItem.getImageCopy();
		}
	}
	this.changeToItem = function(itemNumber){
		if (this.lastItem !== null){
			this.itemsArray[this.lastItem].stop();
			this.holder.removeChild(this.itemsArray[this.lastItem].image);
		}
		i = this.holder.appendChild(this.itemsArray[itemNumber].image);
		this.itemsArray[itemNumber].play();
		this.lastItem = itemNumber;
	}
}