var m=new Array();
m[m.length] = "
若无尘 发布分类信息 求购英国斗牛犬 ..."
m[m.length] = "
mzxfjy 发布分类信息 梅州性福家园商 ..."
m[m.length] = "
z130130 发布分类信息 三星笔记本低价 ..."
m[m.length] = "
广美霓虹 回复分类信息 招聘电旱师傅 ..."
m[m.length] = "
landouaini 对商家 恒波·诺基亚专 ... 进行了点评"
m[m.length] = "
adar 对商家 恒波·诺基亚专 ... 进行了点评"
m[m.length] = "
xychengxi 发布分类信息 大量供应市内房 ..."
m[m.length] = "
wuysdsf 发布分类信息 ★美国原装手机 ..."
m[m.length] = "
wuysdsf 发布分类信息 [出售]笔记本电 ..."
m[m.length] = "
zhangdonglun 发布分类信息 招聘合作业务员 ..."
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();