var m=new Array();
m[m.length] = "2时-51分-11秒:qingniao121 发布了一条长沙计算机培训学校——网页设计师培训的分类信息"
m[m.length] = "9时-21分-37秒:kkbyxcom 发布了一条石头印图案石头印照片设备石头印像技术www.aid168.com的分类信息"
m[m.length] = "9时-21分-17秒:kkbyxcom 发布了一条木板印像设备木板印照片木板印图案技术 www.aid168.com的分类信息"
m[m.length] = "8时-42分-50秒:zuche0731 发布了一条湘速租车竭诚为您服务的分类信息"
m[m.length] = "2时-33分-45秒:zd3636 发布了一条沙龙代理 沙龙娱乐的分类信息"
var a = 0;
document.write("
");
document.write("| "+m[0]+" | ");
document.write(" | ");
document.write("
 | ");
document.write("
");
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();