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

function newsFlash(){

anchor = new Array();
txt = new Array();
// リンク先
anchor[0] = "http://www.rescuenow.net/2010/09/9-11.html";
anchor[1] = "http://www.rescuenow.net/2010/09/9-10.html";
anchor[2] = "http://www.rescuenow.net/2010/09/post-1478.html";
anchor[3] = "http://www.rescuenow.net/2010/09/68-4.html";
anchor[4] = "http://www.rescuenow.net/2010/09/post-1477.html";

// 表示テキスト

txt[0] = "[ニュース]台風9号：九州北部へ接近[10.09.06]";
txt[1] = "[ニュース]帝京大病院で多剤耐性アシネトバクターの院内感染[10.09.04]";
txt[2] = "[トピック]防炎ずきんの一部「注意」を－国民生活センター[10.09.03]";
txt[3] = "[トピック]今夏6～8月の平均気温は統計開始以来で最高－気象庁[10.09.02]";
txt[4] = "[トピック]被災者生活再建支援法の適用要件を緩和－内閣府[10.09.01]";

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

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

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