var m=new Array();
m[m.length] = "
夜行者HID 发布分类信息 夜行者HID氙气 ..."
m[m.length] = "
顺其自然 对商家 元城图片 进行了点评"
m[m.length] = "
永恒 发布分类信息 自选图案服装批 ..."
m[m.length] = "
火孩儿 对商家 ミ素ミ服装店 ... 进行了点评"
m[m.length] = "
永恒 发布分类信息 转让自用飞度改 ..."
m[m.length] = "
永恒 对商家 ミ素ミ服装店 ... 进行了点评"
m[m.length] = "
永恒 对商家 皇室假期 进行了点评"
m[m.length] = "
永恒 发布分类信息 大理石、彩色地 ..."
m[m.length] = "
火孩儿 发布分类信息 丰顺龙鲸河漂流 ..."
m[m.length] = "
cscyh 对商家 梅州市大程科技 ... 进行了点评"
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();