num = 0;
jumpURL = new Array();
	jumpURL[0] = "newproduct/FT340506/FT340506_c.html";
	jumpURL[1] = "newproduct/im3570/";
	jumpURL[2] = "newproduct/lr840021/";
	jumpURL[3] = "newproduct/328820/";	
	jumpURL[4] = "newproduct/SS7012/SS7012_c.html";
	jumpURL[5] = "newproduct/FT3432/FT3432_c.html";
	jumpURL[6] = "newproduct/3390/3390_c.html";


function changeImg(){
	num++;
	num %= 7;	// 数量が変わったらここも変更すること
	document.banner.src = "image_c/if" + num + ".jpg";
	setTimeout("changeImg()",7000);
}

function jump(){
	location.href = jumpURL[num];
}
