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('Peer Advisor Network','
Click
HERE for the short-term, affordable consulting services offered throug...','news_detail.php?newsID=11',' >> Read More').write();
newsArray[1] = new makeNews('Find us on Facebook','Keep in touch and share your info.
> Read More').write();
newsArray[2] = new makeNews('IMPORTANT - State Wide Forums','State Arts Funding is changing. RSVP to one of th...','news_detail.php?newsID=35',' >> Read More').write();
newsArray[3] = new makeNews('A Matter of Taste...','The February Wine Events are back!','news_detail.php?newsID=34',' >> 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);
}
}