var m=new Array();
m[m.length] = "12月08日17点44分:workfine发布了分类信息转让键盘、鼠标、卡王、摄像头、微型摄像机、音响"
m[m.length] = "11月09日22点56分:loysy发布了分类信息新罗区凤凰花园8号楼601房间出租(合租)"
m[m.length] = "11月09日22点56分:loysy发布了分类信息新罗区凤凰花园8号楼601房间出租"
m[m.length] = "11月02日20点18分:王国良发布了分类信息购买大量5米长竹梢"
m[m.length] = "11月01日16点59分:我89592857发布了分类信息包黑炭竹炭制品"
m[m.length] = "11月01日12点35分:虚拟游发布了分类信息洁仕奇自动挤牙膏器"
m[m.length] = "08月23日19点57分:arssg发布了分类信息服装批发市场"
m[m.length] = "07月29日10点58分:lgm521发布了分类信息交易城店面"
m[m.length] = "07月29日10点42分:lgm521发布了分类信息交易城店面 套房出售"
m[m.length] = "07月18日11点59分:qchzw发布了分类信息闽西交易城旺铺出租"
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();