	
	function LoadContent(id)
	{
		var list_obj = document.getElementById("frameContent");
		list_obj.src="content/"+id.split("|")[0]+"/"+id.split("|")[1]+".htm";
	}
	
	function LoadContentUp(id)
	{
		var list_obj = document.getElementById("frameContent");
		list_obj.src=id.split("|")[0]+"/"+id.split("|")[1]+".htm";
	}

	var Timepre = null;
	var Timenext = null;
	function overpre(){
		if(Timepre) clearTimeout(Timepre);
		var date_obj = document.getElementById("datelist");
		if(date_obj.scrollTop+date_obj.offsetHeight<date_obj.scrollHeight)
		{
			date_obj.scrollTop += 4;
			Timepre = setTimeout(function(){overpre()},50);
		}
	}
	function outpre(){
		if(Timepre) clearTimeout(Timepre);
	}
	function overnext(){
		if(Timenext) clearTimeout(Timenext);
		var date_obj = document.getElementById("datelist");
		if(date_obj.scrollTop>0)
		{
			date_obj.scrollTop -= 4;
			Timenext = setTimeout(function(){overnext()},50);
		}
	}
	function outnext(){
		if(Timenext) clearTimeout(Timenext);
	}
	
	
	var Timescroll = null;
	var div_height = 0;	
	function fast_scroll()
	{
		var backtotop = false;
		var should_time = 50;
		var line_height = 21;
		var div = document.getElementById("scroll");
		if(div.scrollTop >= div_height){
			div.scrollTop -= div_height;
			backtotop = true;
		}else{
			div.scrollTop++;
		}
		if(div.scrollTop%line_height == 0&&!backtotop) should_time = 2800;
		Timescroll = setTimeout(function(){fast_scroll()},should_time);
	}
	
	//¹ö¶¯µ¼º½Ìõ
	function init_fast_scroll(){
		var div = document.getElementById("scroll");
		div_height = div.scrollHeight;
		div.innerHTML = div.innerHTML + div.innerHTML;
		Timescroll = setTimeout(function(){fast_scroll()},3000);
		div.onmouseover=function() {clearTimeout(Timescroll)};
		div.onmouseout=function() {Timescroll = setTimeout(function(){fast_scroll()},1000)};
	}	

//	window.onload = function()
//	{
//		init_fast_scroll();
//	}


