var arnews = new Array(5);
totcount = 5;
rnd = 0;
arnews[0]="Peter: ....That's the first time I've heard Paula Abdul speak without slurring her speech
";
arnews[0] += "....That's the first time I've heard Paula Abdul speak without slurring her speech";
arnews[0] += "
";
arnews[1]="David Eikon: Paula Abdul: 2009 American Music Awards
";
arnews[1] += "Paula Abdul: 2009 American Music Awards -";
arnews[1] += "
";
arnews[2]="Celebrity Gossip: Paula Abdul: 2009 American Music Awards: Holy crap! Petite former American Idol judge, Paula Abdul, is weari.. http://bit.ly/8N5hDB
";
arnews[2] += "Paula Abdul: 2009 American Music Awards: Holy crap! Petite former American Idol judge, Paula Abdul, is weari..";
arnews[2] += "
";
arnews[3]="American Music Awards: Notes from backstage - Los Angeles Times
";
arnews[3] += "American Music Awards: Notes from backstage - Los Angeles Times -";
arnews[3] += "
";
arnews[4]="Andy Burton: American Music Awards: Notes from backstage: Paula Abdul might not be returning as a judge on reality TV jugger.. http://bit.ly/5odfOe
";
arnews[4] += "American Music Awards: Notes from backstage: Paula Abdul might not be returning as a judge on reality TV jugger..";
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("