var exhibitionist_vi_imageObject = function(){
	this.init = function(mainClass,aligner,itemArray){
		this.mainClass = mainClass;
		this.aligner = aligner;
		this.itemArray = itemArray;
		this.aligner.addDimantion(this.itemArray['main_imageWidth'],this.itemArray['main_imageHeight']);
	}
	this.getImageCopy = function(){
		var copy = {
			image:new Image(),
			imageWidth:this.itemArray['main_imageWidth'],
			imageHeight:this.itemArray['main_imageHeight'],
			alignedWidth:0,
			alignedHeight:0
		};
		copy.play = function(){};
		copy.stop = function(){};
		copy.image.setAttribute("width",copy.imageWidth);
		copy.image.setAttribute("height",copy.imageHeight);
		copy.image.src = this.itemArray['main_image'];
		this.aligner.setAlignment(copy);
		copy.aligner = this.aligner;
		return copy;
	}
}