num = 0;
jumpURL = new Array();
imgURL  = new Array();

jumpURL[0] = "basic_01.html";
jumpURL[1] = "cosmetics_01.html";

imgURL[0]  = "img/banner/banner01.jpg";
imgURL[1]  = "img/banner/banner02.jpg";



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;
}

function swImg(iName,str)
{document.images[iName].src = str;}
// -->
<!--
var winfl=0;

			function newpage(){
				winfl=1;
				//var w01
				newWindow= window.open("","zoomWindow","toolbar=yes,width=475,height=495,directories=no,resizable=yes,scrollbars=yes,status=0,menubar=no");
				newWindow.focus();
			 }
