var arrWebsiteStatus = '网站编辑 发布MP3同步字幕@Alibaba Founder Jack 12:54:29<$>网站编辑 发布MP3节目录音@John Bolton Out as U 9:15:16<$>网站编辑 发布MP3节目录音@Alibaba Founder Jack 9:15<$>网站编辑 发布MP3节目录音@North Korea Launches 9:14:41<$>网站编辑 发布MP3节目录音@Study: Some 9/11 Fir 9:14:20<$>网站编辑 发布MP3节目录音@Director of MIT's Me 9:14<$>Evey 评论文章:Lesson 70 - jinx / come off it 21:28:59<$>Evey 评论文章:Lesson 69 - catch a flick 21:23<$>Evey 评论文章:Lesson 68 - gee / oh well 21:17:08<$>Evey 评论文章:Lesson 67 - out of line / 21:03<$>Evey 评论文章:Lesson 66 - hot / have a c 20:47:18<$>Evey 评论文章:Lesson 66 - hot / have a c 20:45:13<$>网站编辑 发布词汇句型精讲@Popular American St 20:34:02<$>网站编辑 发布MP3节目录音@Loch Ness Monster Ma 13:14:56<$>网站编辑 发布MP3节目录音@Ebola Survivors Face 13:14:10<$>'.split('<$>');
//定位当前的网站状态数组指针
var intWebsiteStatus = 0;
var objTimer = null;
function displayWebsiteStatus(){
if(document.getElementById("divBroadcast")==null){
return false;
}
if(arrWebsiteStatus.length<2){
return false;
}
if(intWebsiteStatus<(arrWebsiteStatus.length-1)){
try{
document.getElementById("divBroadcast").innerHTML = arrWebsiteStatus[intWebsiteStatus];
intWebsiteStatus = (intWebsiteStatus+1);
}
catch(e){
}
}
else{
intWebsiteStatus = 0;
}
if(objTimer){
window.clearTimeout(objTimer);
}
objTimer = window.setTimeout("displayWebsiteStatus()",5000);
}
displayWebsiteStatus();