// JavaScript Document


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


num = 0;
jumpURL = new Array();
imgURL  = new Array();

jumpURL[0] = "whatis.html";
jumpURL[1] = "ecofriendly.html";
jumpURL[2] = "for.html";


imgURL[0]  = "img/banner/banner01.gif";
imgURL[1]  = "img/banner/banner02.gif";
imgURL[2]  = "img/banner/banner03.gif";


function changeImg()
{
	num = Math.floor(Math.random()*jumpURL.length);
	document.banner.src = imgURL[num];
	setTimeout("changeImg()",5000);
}
function jump()
{
	location.href = jumpURL[num];
}
function swImg(iName,str)
{
	document.images[iName].src = str;
}

