function imageObject(src, height, width)
{
	this.src = src;
	this.height = height;
	this.width = width;
}
   	
