var arnews = new Array(5);
totcount = 5;
rnd = 0;
arnews[0]="Latest News: Another 'Dancing with the Stars' celebrity sinks
";
arnews[0] += "Another 'Dancing with the Stars' celebrity sinks -";
arnews[0] += "
";
arnews[1]="RadarOnline.com: EXCLUSIVE VLOG: DWTS's Anna Trebunskaya takes us to her dance class and more: http://bit.ly/2QzwA8
";
arnews[1] += "EXCLUSIVE VLOG: DWTS's Anna Trebunskaya takes us to her dance class and more:";
arnews[1] += "
";
arnews[2]="Tony: lacey schwimmer has the flu. mark dacascos will dance with anna trebunskaya on monday. get well soon lacey! #dwts
";
arnews[2] += "lacey schwimmer has the flu. mark dacascos will dance with anna trebunskaya on monday. get well soon lacey!";
arnews[2] += "
";
arnews[3]="AshtonKutcherFC: Flu Bug Strikes Dancing with the Stars Again: Anna Trebunskaya will fill in on Monday for a sick Lacey Schwimmer http://bit.ly/16djmU
";
arnews[3] += "AshtonKutcherFC: Flu Bug Strikes Dancing with the Stars Again: Anna Trebunskaya will fill in on Monday for a sick Lacey Schwimmer";
arnews[3] += "
";
arnews[4]="Flu Bug Strikes Dancing with the Stars Again
";
arnews[4] += "Flu Bug Strikes Dancing with the Stars Again";
arnews[4] += "
";
totcount = 5;
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]);
if (x != (totcount-1) ) document.write("
"); }
document.write("