function showArticle(text)
{
  if (text == '') {
    text = newsArray[0];
  }

  i += 1;
  if(i < newsArray.length)
  {
    document.getElementById('news').innerHTML = newsArray[i];
    setTimeout("showArticle('"+ newsArray[i] +"');",4000);
  }
  else
  {
    i = 0;
    document.getElementById('news').innerHTML = newsArray[i];
    setTimeout("showArticle('"+ newsArray[i] +"');",4000);
  }
}

var newsArray = new Array();
var i = 0;
newsArray[0] = "<b>Check Out These Links: <a href=\"http://www.woolman.com/understanding-risk.php\">Understanding Risk</a></b>";
/*newsArray[1] = "<b>Check Out These Links: <a href=\"http://woolman.com/helpdreams.php\">Dreams Really Do Come True</a></b>";*/
newsArray[1] = "<b>Check Out These Links: <a href=\"http://woolman.com/newsletter.php\">Newsletters</a></b>";
newsArray[2] = "<b>Check Out These Links: <a href=\"http://woolman.com/ltc.php\">Long-Term Care &mdash; A Complex Field</a></b>";
newsArray[3] = "<b>Check Out These Links: <a href=\"http://woolman.com/newOffice.php\">Fort Wayne Office&#39;s Ribbon Cutting</a></b>";

