var imgarr = new Array()
var imgcnt=0
function preloadImage(filename) {
	imgarr[imgcnt]=new Image(); 
	imgarr[imgcnt].src=filename;
	imgcnt++;
}


