var arnews = new Array(5); totcount = 5; rnd = 1; document.write("
| ");
arnews[0]="Your Local Doppler Radar "; arnews[0] += "This map shows the location and intensity of precipitation in your area. The color of the precipitation corresponds to the rate at which it is falling. This map is updated every 15 minutes."; arnews[0] += " "; arnews[1]="Pollen Trend for Prescott, AZ (86301) "; arnews[1] += "Steady. View complete PollenCast?"; arnews[1] += " "; arnews[2]="Video: Your Regional Weather Forecast "; arnews[2] += "Watch what the experts at The Weather ChannelĀ® have to say about the weather trends in your area."; arnews[2] += " "; arnews[3]="ADV: Upgrade to weather.com Gold! "; arnews[3] += "Get advanced storm tracking maps and weather for 10 cities in one-click, all with no ads! Start your free trial now."; arnews[3] += " "; arnews[4]="Your 10-Day Forecast for Prescott, AZ (86301) "; arnews[4] += "Today: Clear & High 76°F / Low 49°F.---- Thu: Sunny / Wind & High 72°F / Low 49°F.---- Fri: Sunny & High 73°F / Low 50°F.---- Sat & Beyond.... For more details?"; 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(" |