// images preload ver 0.1

function images_preload() {
	
	this.t = this;
	this.img_array = new Array();
	this.img_path = "";
}
var preload = new images_preload();	
	
images_preload.prototype.img_parce = function() {
	
	for(var i = 0; i < this.img_array.length; i++) {
		
		if(this.img_array[i] != "") this.img_load(this.img_array[i]);
	}
}

images_preload.prototype.img_load = function(img) {	
	
	var new_images = new Image();
	new_images.src = this.img_path + img;
}

/* ########### primer ############### */
//
//	preload.img_array = new Array("0ABIGCAT2.JPG", "0am_sp_50_1_1024_wallcoo_com.jpg", "0ANATURE03.JPG", "0ANATURE04.JPG", "0ANATURE06.JPG");;
//	preload.img_path = "";
//
//	preload.img_parce();
//
/* ################################ */
