num = 0;
jumpURL = new Array();
imgURL  = new Array();

jumpURL[0] = "feature.html";
jumpURL[1] = "application.html";
jumpURL[2] = "what.html";

imgURL[0]  = "img/banner/banner01.jpg";
imgURL[1]  = "img/banner/banner02.jpg";
imgURL[2]  = "img/banner/banner03.jpg";

function changeImg()
{
	num++;
	num %= 3;
	document.banner.src = imgURL[num];
	setTimeout("changeImg()",5000);
}
function jump()
{
	location.href = jumpURL[num];
}
function swImg(iName,str)
{
	document.images[iName].src = str;
}

