var m=new Array();
m[m.length] = "03月04日16点53分:yewuzt2011发布了分类信息GPS"
m[m.length] = "03月04日16点47分:yewuzt2011发布了分类信息车载GPS导航仪"
m[m.length] = "07月17日12点14分:616533776发布了分类信息手提灭火器出让(最低价)"
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发布了分类信息服装批发市场"
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();