var arnews = new Array(12);
totcount = 12;
rnd = 1;
arnews[0]="PROMISES, PROMISES: FAA fatigue rules finally near (AP)
";
arnews[0] += "
";
arnews[1]="Laura Bush to speak at 9/11 memorial fundraiser (AP)
";
arnews[1] += "
";
arnews[2]="Suicide attack in Russia kills 15, wounds over 100 (AP)
";
arnews[2] += "
";
arnews[3]="Crews contain 10 percent of Colorado wildfire (AP)
";
arnews[3] += "
";
arnews[4]="Fidel latest to say Cuba's communism doesn't work (AP)
";
arnews[4] += "
";
arnews[5]="APNewsBreak: Spears' ex disputes abuse claims (AP)
";
arnews[5] += "
";
arnews[6]="Federer fights off wind to reach US Open semis (AP)
";
arnews[6] += "
";
arnews[7]="Health reforms trigger spending shift (Reuters)
";
arnews[7] += "
";
arnews[8]="U.S. slips in WEF's competitiveness rankings (Reuters)
";
arnews[8] += "
";
arnews[9]="Afghanistan seeks to dilute foreign anti-graft role (Reuters)
";
arnews[9] += "
";
arnews[10]="Obama: U.S. can't afford to extend tax cuts for rich (Reuters)
";
arnews[10] += "
";
arnews[11]="Suicide bombing kills 11 in Russian Caucasus city (AFP)
";
arnews[11] += "
";
totcount = 12;
if (rnd) {
for (x=0;x<=100;x++) {
y=Math.round(Math.random()*totcount-0.5);
z=x%totcount;
tval=arnews[y];
arnews[y] = arnews[z];
arnews[z] = tval;
}
}
for (x=0;x<=(totcount-1);x++) {
document.write(arnews[x]);
}
document.write("