局领导定期接访公告
接访时间:每月23日为局领导接访日,如遇节假日则顺延至下一个工作日,接访时间为上午9:00-12:00。
接访地点:梅东路28号,广州市人力资源和社会保障综合服务大厅二楼。
接访要求:需要参加局领导接访活动的群众或组织,请于接访前一个月的22日(如遇节假日则提前至上一个工作日)上午,到广州市人力资源和社会保障综合服务大厅一楼五号窗预约登记并提交材料,以便提前研究处理。没有预约登记的,不予接访。
function Marquee(content, speed){
this.speed = speed || 100; //default value
this.content = content;
this.content.innerHTML += this.content.innerHTML;
this.content.scrollTop = 0;
this.threadScroll = null;
}
Marquee.prototype= {
start: function(){
if(parseInt(this.content.scrollTop) >= (parseInt(this.content.scrollHeight) / 2) )
this.content.scrollTop = 0;
this.content.scrollTop++;
},
stop: function(){
if (this.threadScroll != null){
clearInterval(this.threadScroll);
threadScroll = null;
}
},
autoScroll: function(){
var self = this;
this.threadScroll = setInterval(function(){self.start()}, this.speed);
this.content .onmousemove = function(){self.stop()};
this.content .onmouseout = function(){self.autoScroll()};
}
}
new Marquee(document.getElementById("scoll_txt")).autoScroll();