// JavaScript Document
//
//Begin function menu top
//
showtime = 0;
function changtab(id,count,clear){
	for(i=1;i<=count;i++){
		document.getElementById('tab_'+i).className='tab_nomal';
	}
	document.getElementById('tab_'+id).className='tab_select';
	valueHtml = document.getElementById('content_'+id).innerHTML;	
	document.getElementById('tab_content').innerHTML = valueHtml;
	if(clear==1) clearInterval(showtime);
}	
//
function mouseout(id,count){
	showtime = setInterval(function() {changtab(id,count,1)},6000);
}
//
// end function menu top
//
function view_support_online()
	{
		url="/view_support_online/";
		AjaxRequest.get(
			{
			'url':url
			,'onSuccess':function(req){document.getElementById('div_view_support_online').innerHTML=req.responseText;}
			,'onError':function(req){}
			}
		)
	}
