var arnews = new Array(10);
totcount = 2;
rnd = 0;
arnews[0]="Boys Freshman Basketball 10:00AM 01/28/2012
";
arnews[0] += "Lake Central High School vs Hammond Bishop Noll High";
arnews[0] += "
";
arnews[1]="Boys JV Basketball 10:30AM 01/28/2012
";
arnews[1] += "Lake Central High School @ Chesterton High School";
arnews[1] += "
";
totcount = 2;
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("