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

