var m=new Array();
m[m.length] = "12月14日07点50分:chenxia977 回复了分类信息 办公室文员诚聘"
m[m.length] = "10月14日13点13分:夜术师 对商家 威远生活网 进行了点评"
m[m.length] = "09月22日16点12分:nancyxie 回复了分类信息 欲寻找愿意同本站合作的合作伙伴 ..."
m[m.length] = "09月21日13点47分:scwyly 回复了分类信息 兰草街住房出售"
m[m.length] = "09月04日21点46分:95457989 回复了分类信息 精美文胸"
m[m.length] = "07月29日09点20分:飞走不可 回复了分类信息 诚招酒店管理"
m[m.length] = "07月25日12点03分:飞走不可 对商家 婆城易居 进行了点评"
m[m.length] = "07月16日15点19分:飞走不可 对商家 门 进行了点评"
m[m.length] = "07月11日15点39分:daishigang 回复了分类信息 赚钱新工具:运动玩具马转让!不知道是是什么?不 ... ..."
m[m.length] = "07月11日12点37分:魂斗罗 回复了分类信息 赚钱新工具:运动玩具马转让!不知道是是什么?不 ... ..."
var a = 0;
document.write(""+m[0]+"");
var user_action_timer= null;
function user_action_start()
{
user_action_timer = setTimeout("user_action_run()",2000);
return;
}
function user_action_run()
{
a++;
if(a >= m.length) a = 0;
document.getElementById("user_action_msg_id").innerHTML = m[a];
user_action_timer = setTimeout("user_action_run()",5000);
return;
}
function user_action_next()
{
a++;
if(a >= m.length) a = 0;
document.getElementById("user_action_msg_id").innerHTML = m[a];
user_action_stop();
return;
}
function user_action_last()
{
a--;
if(a < 0) a = m.length - 1;
document.getElementById("user_action_msg_id").innerHTML = m[a];
user_action_stop();
return;
}
function user_action_stop()
{
if(user_action_timer!=null) clearTimeout(user_action_timer);
return;
}
user_action_start();