function newsMove(){
	$("#registernotice ul").animate({marginTop:"-=18"},500,function(){
		$(this).css({marginTop:"0px"}).find("li:first").appendTo(this)
	})
}
$(function(){
  setInterval(newsMove,3000)
});


function billMove(){
	$("#billnotice ul").animate({marginTop:"-=18"},500,function(){
		$(this).css({marginTop:"0px"}).find("li:first").appendTo(this)
	})
}
$(function(){
  setInterval(billMove,6000)
});




