var m=new Array();
m[m.length] = "12月28日09点08分:fanfan发布了分类信息华艺舞蹈健身中心"
m[m.length] = "12月22日13点57分:fanfan发布了分类信息华艺舞蹈健身中心(前身为唐朝文化传播公司)"
m[m.length] = "12月17日06点31分:游玲发布了分类信息福州第一女子舞蹈健身培训中心"
m[m.length] = "12月10日02点01分:fanfan发布了分类信息福州第一女子舞蹈健身培训中心"
m[m.length] = "12月10日01点59分:fanfan发布了分类信息福州第一女子舞蹈健身培训中心"
m[m.length] = "12月05日13点41分:zgbi回复了分类信息◥◣♡◢◤餐饮软件-您理财的好帮手"
m[m.length] = "12月02日14点52分:zgbi回复了分类信息◥◣♡◢◤餐饮软件-您理财的好帮手"
m[m.length] = "11月29日13点24分:zgbi回复了分类信息◥◣♡◢◤餐饮软件-您理财的好帮手"
m[m.length] = "11月27日13点57分:zgbi回复了分类信息◥◣♡◢◤餐饮软件-您理财的好帮手"
m[m.length] = "11月23日14点36分:zgbi发布了分类信息◥◣♡◢◤餐饮软件-您理财的好帮手"
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();