/* PEGASYS en : change.js for Switch of top banner  2006.2 */



// 一定時間ごとにイメージの切り替え

<!--

num = 0;

jumpURL = new Array();

jumpURL[0] = "http://tmpgenc.pegasys-inc.com/en/product/taw4.html";

jumpURL[1] = "http://tmpgenc.pegasys-inc.com/en/product/tme3_landing.html";

jumpURL[2] = "./product/te4xp.html";

jumpURL[3] = "./product/tme20.html";



function strt()

{

	num++;

	num %= jumpURL.length;

	document.banner.src = "images/banner/top_koukoku" + num + ".jpg";

	setTimeout("strt()",2500);

}



function jump()

{

	location.href = jumpURL[num] ;  /* 同一ウインドウの場合 */

	/*window.open(jumpURL[num]); */ /* 別ウインドウの場合 */

}

// -->






