var m=new Array();
m[m.length] = "
zc2557 发布了分类信息 沈阳远信个 ..."
m[m.length] = "
e789456 发布了分类信息 永鑫个人无 ..."
m[m.length] = "
qazwsx16 发布了分类信息 〓全新原装 ..."
m[m.length] = "
345978 发布了分类信息 长期办理无 ..."
m[m.length] = "
ban5201 发布了分类信息 北方运动鞋 ..."
m[m.length] = "
zsh987654 发布了分类信息 九江鸿通个 ..."
m[m.length] = "
goodnewman 发布了分类信息 诚招代理家 ..."
m[m.length] = "
goodnewman 发布了分类信息 家庭园林时 ..."
m[m.length] = "
新北方网 对商家 粗茶淡饭 ... 进行了点评"
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();