function inform_banner(){
	for(i=1;i<=inform_bannerCount;i++){
		if(inform_bannerTmpVal!=1) {
			inform_bannerVal = inform_bannerTmpVal;
			inform_bannerTmpVal = 1;
		}
		if(inform_bannerVal == inform_bannerCount+1)	inform_bannerVal = 1;
		id1 = "inform_banner_num"+i
		id2 = "inform_banner_image"+i
		if(inform_bannerVal==i){
			document.getElementById(id1).setAttribute('src',"/image/home/buttons/btn_main_"+i+"on.gif");
			document.getElementById(id2).style.display	= "";
		}else{
			document.getElementById(id1).setAttribute('src',"/image/home/buttons/btn_main_"+i+".gif");
			document.getElementById(id2).style.display	= "none";
		}
	}

	inform_bannerVal = inform_bannerVal + 1;
	autocontrolvar=setTimeout("inform_banner()",4000);
}


function inform_bannerStop(chk){
	if(chk){
		clearTimeout(autocontrolvar);
	}else{
		clearTimeout(autocontrolvar);
		inform_banner();
	}
}

function inform_bannerMove(num){
	for(i=1;i<=inform_bannerCount;i++){
		id1 = "inform_banner_num"+i
		id2 = "inform_banner_image"+i
		if(num==i){
			document.getElementById(id1).setAttribute('src',"/image/home/buttons/btn_main_"+i+"on.gif");
			document.getElementById(id2).style.display	= "";
		}else{
			document.getElementById(id1).setAttribute('src',"/image/home/buttons/btn_main_"+i+".gif");
			document.getElementById(id2).style.display	= "none";
		}
	}
	inform_bannerVal = num;
	inform_bannerTmpVal = num;
	inform_bannerStop(1);
}
