num = 0;
jumpURL = new Array();
	jumpURL[0] = "newproduct/rm3543/rm3543_e.html";
	jumpURL[1] = "newproduct/mr8875/mr8875_e.html";
	jumpURL[2] = "newproduct/339010/339010_e.html";
	jumpURL[3] = "newproduct/ct6865/ct6865_e.html";
	jumpURL[4] = "newproduct/mr8847/mr8847_e.html";
	jumpURL[5] = "newproduct/SM7810/SM7810_e.html";
	jumpURL[6] = "newproduct/PR811112/PR811112_e.html";
	jumpURL[7] = "newproduct/PW3198/PW3198_e.html";
	jumpURL[8] = "newproduct/LR5000/LR5000_e.html";

function changeImg(){
	num++;
	num %= 9;	// 数量が変わったらここも変更すること
	document.banner.src = "image_e/if" + num + ".jpg";
	setTimeout("changeImg()",5000);
}

function jump(){
	location.href = jumpURL[num];
}
