var ImageLoader = function(param_path ,param_callback){
	this.path = param_path;
	this.callback = param_callback;
	this.data;
};

ImageLoader.prototype = {
	
	load:function(){
		this.data = document.createElement('img');
		this.data.onload = this.callback;
		this.data.src = this.path;
	},
	

};
