function newsProFun(obj){
	var newsProAobj = document.getElementById(obj);
	var newsProAobjA = newsProAobj.getElementsByTagName("a");
	for(var i=0;i<newsProAobjA.length;i++){
		newsProAobjA[i].onmousemove = function (){with(this.style){border='2px solid #ff6600';background='#ffff82';padding='0';}};
		newsProAobjA[i].onmouseout = function (){with(this.style){border='1px solid #999';background='#fff';padding='1px';}}
	}
}