function MakeArray(n) {
	this.length = n;
	for (var i = 1; i<=n; i++) {
		this[i] = new Image();
	}
	return this;
}
