function makeNews(c,con,l,f){ this.copy = c; this.content = con; this.link = l; this.follow = f; this.write = writeNews; } function writeNews(){ var str = ''; str += ''; str += ''+this.copy + '
'; str += this.content + '
'; str += '' + this.follow + ''; return str; } var newsArray = new Array(); newsArray[0] = new makeNews('March 18 CultureMIX','JOIN US & click HERE for the short-term, affordable consulting services offered throug...','news_detail.php?newsID=11',' >> Read More').write(); newsArray[2] = new makeNews('ARTISTS - TAKING CARE OF BUSINESS','

Save the Dates!  3 state-wide workshops for Artists (click for info).

','news_detail.php?newsID=19',' >> Read More').write(); newsArray[3] = new makeNews('CT Arts Advocacy Day - March 24','
Come to Hartford and advocate for CT's Arts!  Spread the word! Click HE...','news_detail.php?newsID=21',' >> Read More').write(); var nIndex = 0; var timerID = null; function rotateNews(){ var len = newsArray.length; if(nIndex >= len) nIndex = 0; document.getElementById('stories').innerHTML = newsArray[nIndex]; nIndex++; timerID = setTimeout('rotateNews()',4000); } function pauseNews() { if (timerID != null) { clearTimeout(timerID); timerID = null; } } function playNews() { if (timerID == null) { timerID = setTimeout('rotateNews()', 4000); } }