//画像プリローダー

function preLoad(path,picNameAry){



		PreImg = new Array();

		ii = 0;

		while(ii < picNameAry.length){

			PreImg[ii] = new Image();

			PreImg[ii].src = path + picNameAry[ii];

			++ii;

		}



}




