// JavaScript Document
if($("#notice_item1 li").length>2){
	var _speed=50; //数字越大速度越慢
	var _tab=document.getElementById("notice_c");
	var _tab1=document.getElementById("notice_item1");
	var _tab2=document.getElementById("notice_item2");
	_tab2.innerHTML=tab1.innerHTML;
	function _Marquee(){
	if(_tab2.offsetHeight-_tab.scrollTop<=0)
	_tab.scrollTop-=_tab1.offsetHeight
	else{
	_tab.scrollTop++;
	}
	}
	var MyMar2=setInterval(_Marquee,_speed);
	tab.onmouseover=function() {clearInterval(MyMar2)};
	tab.onmouseout=function() {MyMar2=setInterval(_Marquee,_speed)};
}


