function imgLoad(){
var imgList = new Array();
for(i=1; i<5; i++){
	imgList[i] = new Image();
	imgList[i].src="http://www.mag-labo.jp/test/img/main_img" + i + ".jpg";
}
}

function imgChange(url){
	document.getElementById('img').src=url;
}
