var arnews = new Array(4);
totcount = 4;
rnd = 1;
arnews[0]="Champlin / Missing police dog is found, returned - Pioneer Press
";
arnews[0] += "A drug-sniffing police dog that went missing in Champlin has been found. The Anoka County sheriff's office said a citizen found Sherman on Friday morning and he has been returned to his handler. The 4-year ...";
arnews[0] += "
";
arnews[1]="Report: Missing Anoka Co. sheriff's dog is found - Minneapolis Star Tribune
";
arnews[1] += "CHAMPLIN, Minn. - A police ... The Anoka County Sheriff's Department told the station that Sherman was found by a citizen Friday morning and returned to his handler. The 4-year-old black lab went missing Thursday,";
arnews[1] += "
";
arnews[2]="Dad accused of truck damage after intervening on kids' behalf: Brunswick Police ... - Cleveland Plain Dealer
";
arnews[2] += "Police had no suspects at the time of the report. DRUG USE, JAMES BOULEVARD: An officer on patrol near James Park questioned three people seen leaving the park at 2:19 a.m. Aug. 28, past park hours. A K-9 ... DOG BITE,";
arnews[2] += "
";
arnews[3]="Police dog bites officer, woman, 6-year-old in McKeesport - Pittsburgh Tribune-Review
";
arnews[3] += "A mother, her 6-year-old daughter and a police officer were bitten by a K-9 dog in McKeesport after it was mistakenly let loose from a police car. McKeesport police said the dog escaped after the girl's mother opened ...";
arnews[3] += "
";
totcount = 4;
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("