num = 0;
jumpURL = new Array();
	jumpURL[0] = "newproduct/SS7012/SS7012_e.html";
	jumpURL[1] = "newproduct/RM3542/RM3542_e.html";
	jumpURL[2] = "newproduct/FT3432/FT3432_e.html";
	jumpURL[3] = "newproduct/4000/4000_e.html";
	jumpURL[4] = "newproduct/3390/3390_e.html";
	jumpURL[5] = "newproduct/3490/3490_e.html";
	jumpURL[6] = "newproduct/3258/3258_e.html";
	jumpURL[7] = "newproduct/8847/8847_e.html";
	jumpURL[8] = "newproduct/887020/887020_e.html";
	jumpURL[9] = "newproduct/843020/843020_e.html";

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

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