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

function newsFlash(){

anchor = new Array();
txt = new Array();
// リンク先
anchor[0] = "http://www.rescuenow.net/2012/01/9-13.html";
anchor[1] = "http://www.rescuenow.net/2012/01/117-8.html";
anchor[2] = "http://www.rescuenow.net/2012/01/post-1717.html";
anchor[3] = "http://www.rescuenow.net/2012/01/2012-1.html";

// 表示テキスト

txt[0] = "[トピック] 生食用食肉の新基準、9割超が違反－厚労省調査 [12.01.28]";
txt[1] = "[トピック] 復旧・復興支援制度データベースの公開－経産省 [12.01.18]";
txt[2] = "[ニュース] 除染ロードマップを公表－環境省 [12.01.27]";
txt[3] = "[ニュース] 2012年春の花粉飛散量、例年より少なめ－環境省 [12.01.28]";

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

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

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


