window.onload = function() { newsFlash(); }

function newsFlash(){

anchor = new Array();
txt = new Array();
// リンク先
anchor[0] = "http://www.rescuenow.net/2010/03/m60.html";
anchor[1] = "http://www.rescuenow.net/2010/03/m723121.html";
anchor[2] = "http://www.rescuenow.net/2010/03/post-1442.html";
anchor[3] = "http://www.rescuenow.net/2010/03/post-1443.html";
anchor[4] = "http://www.rescuenow.net/2010/03/post-1440.html";

// 表示テキスト

txt[0] = "[トピック]トルコ東部でM6.0の地震、複数の死傷者[10.03.09]";
txt[1] = "[トピック]南米西部(チリ)でM6.9の地震（03/11）[10.03.12]";
txt[2] = "[コラム]雪に埋もれた車はどうやって除雪するのか[10.03.07]";
txt[3] = "[トピック]「エスカレーター歩行は危険」独自のポスター掲示[10.03.08]";
txt[4] = "[ブログ]道端からの提案『ムクドリの暴走』";

n = Math.floor(Math.random()*anchor.length);
document.getElementById("newstxt").href=anchor[n];
document.getElementById("newstxt").innerHTML=txt[n];

//文字が切り替わる秒数　1000=1秒

setTimeout('newsFlash()',5000);
}

