var m=new Array();
m[m.length] = "03月27日06点41分:明月发布了分类信息防身宝"
m[m.length] = "03月25日07点17分:艾佳清洁发布了分类信息艾佳(福州)清洁公司 外墙清洗 装修清洁 石材翻新 地毯清洗"
m[m.length] = "03月20日03点17分:tieren3对商家 荆隆休闲农庄 进行了点评"
m[m.length] = "03月17日09点28分:rzjychenming发布了分类信息全国监理工程师岗位培训"
m[m.length] = "03月13日06点40分:轻衣对商家 荆隆休闲农庄 进行了点评"
m[m.length] = "03月12日11点37分:wsljg520发布了分类信息晚上工作"
m[m.length] = "03月12日11点31分:wsljg520发布了分类信息找晚班"
m[m.length] = "03月07日16点38分:liuxuetong对商家 福建师范大学家教服务中心 进行了点评"
m[m.length] = "03月05日03点48分:轻衣对商家 荆隆休闲农庄 进行了点评"
m[m.length] = "03月04日09点43分:妖刀对商家 叶子美容工作室 进行了点评"
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();