var textnumber = 7 ; 
var randomnumber = Math.random() ; 
var rand1 = Math.round( (textnumber-1) * randomnumber) + 1 ;
text = new Array ;
text[1] = "Only 55 percent of 70,150 miles of Georgia's streams support a full range of aquatic life.   Sadly, 16 percent support no aquatic life at all.<br>"; 
text[2] = "The highest concentration of pesticides in metro Atlanta's rivers and streams are found during the month of May.<br>"; 
text[3] = "Major culprits causing impairment of rivers include metals, pathogens and low dissolved oxygen levels.<br>"; 
text[4] = "Only 14 percent of the 70,150 total stream and river miles in our state are monitored. (Of that percentage nearly 60% do not meet water quality standards.)<br>"; 
text[5] = "More than 800 of Georgia's waterways already fail federal safety regulations for toxic chemicals and cancer-causing agents. Officials statewide blame runoff from parking lots, roofs, streets and new development.<br>"; 
text[6] = "Pet waste contains as many as 75 diseases and viruses that may make our water unsafe for fishing, swimming and other types of recreation.<br>";
text[7] = "The Clean Water Campaign is conducting a series of septic tank workshops across metro Atlanta.  Click <a href='/html/698.htm'>here</a> for more information.<br>";
var mytext = text[rand1];

// nav drop menus
startList = function() {
 if (document.all && document.getElementById) {
  navRoot = document.getElementById("dmenu");
  for (i=0; i < navRoot.childNodes.length; i++) {
   node = navRoot.childNodes[i];
   if (node.nodeName=="LI") {
    node.onmouseover=function() {
     this.className+=" over";
    }
    node.onmouseout=function() {
     this.className=this.className.replace(" over", "");
    }
   }
  }
 }
}