var m=new Array();
m[m.length] = "09月04日19点54分:xiaofang628发布了分类信息高薪招聘赴新加坡大酒店服务员"
m[m.length] = "08月31日17点11分:xiaofang628发布了分类信息高薪招聘赴新加坡酒吧"
m[m.length] = "08月31日17点10分:xiaofang628发布了分类信息高薪招聘赴新加坡西餐厨师"
m[m.length] = "07月19日14点36分:wuxi123回复了分类信息无锡购物网"
m[m.length] = "07月19日14点35分:wuxi123回复了分类信息无锡购物网"
m[m.length] = "07月11日11点54分:萨哈萨回复了分类信息清华大学IT工程师培训---网络,软件,数字艺术与游戏动漫。"
m[m.length] = "07月02日10点39分:fish.q发布了分类信息200分高考生的选择-清华IT"
m[m.length] = "06月27日14点31分:fish.q发布了分类信息清华大学IT工程师培训---网络,软件,数字艺术与游戏动漫。"
m[m.length] = "03月25日20点20分:gtgewq001发布了分类信息手机来电任意显示软件"
m[m.length] = "03月22日17点04分:杨平发布了分类信息无锡车保姆上门洗车"
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();