/* PEGASYS en : change.js for Switch of top banner  2006.2 */

// 一定時間ごとにイメージの切り替え
<!--
num = 0;
jumpURL = new Array();
jumpURL[0] = "./product/taw4.html";
jumpURL[1] = "./product/te4xp.html";
jumpURL[2] = "./product/te4xp.html";
jumpURL[3] = "../en/product/tme3.html";
jumpURL[4] = "./product/tms.html";


function strt()
{
	num++;
	num %= 5;
	document.banner.src = "images/banner/top_koukoku" + num + ".jpg";
	setTimeout("strt()",5000);
}

function jump()
{
	location.href = jumpURL[num] ;  /* 同一ウインドウの場合 */
	/*window.open(jumpURL[num]); */ /* 別ウインドウの場合 */
}
// -->

