<!--
ntc = document.getElementById('LinkList').getElementsByTagName('tr');
ntc_n = ntc.length; //rs°¹¼ö.
ntc_ht = 38 // ³ôÀÌ
ntc_sp = 5000 // 5000 => 5ÃÊ
ntc_act = 0;
ntc_act2 = 1;
ntc_roll = "y";

function HotRollStart(){
	if(ntc_roll=="y"){
		if(ntc_n > 1){
			for(i=0;i<ntc_n;i++){ ntc[i].style.display = "none"; }	
			ntc[ntc_act].style.display = "block";
			ntc[ntc_act2].style.display = "block";
			ntc[ntc_act].style.top = 0;
			ntc[ntc_act2].style.top = ntc_ht + "px";
			St_a = setTimeout("HotRoll()",ntc_sp);
		}
		else{
			ntc[0].style.display = "block";
			St_a = setTimeout("HotRoll()",ntc_sp);
		}
	}
}

function HotRoll(){
	ntc[ntc_act].style.top = ((ntc[ntc_act].style.top).replace("pt","").replace("px","") - 1) + "px";
	ntc[ntc_act2].style.top = ((ntc[ntc_act2].style.top).replace("pt","").replace("px","") - 1) + "px";
	
	if((ntc[ntc_act].style.top).replace("px","")>-ntc_ht){
		St_b = setTimeout("HotRoll()",10);
	}
	else{
		ntc_act = (ntc_act+1)%ntc_n;
		ntc_act2 = (ntc_act2+1)%ntc_n;
		HotRollStart();
	}
}

function ap_Stop(){ ntc_roll='n'; clearTimeout(St_a); }
function ap_Play(){ ntc_roll='y'; HotRollStart(); }	

HotRollStart();
//-->