var c=0;
var t;

//To Add news items sequentially add the following eg.(newsItem[2] = "Place your news item here";)

var newsItem = new Array();
newsItem[0] = "View Upcoming Events in February";
//newsItem[1] = "This is the second";
//newsItem[2] = "This is the third";

function timedCount()
{
if(newsItem[c]==null){c=0;};
document.getElementById('newsItems').innerHTML= "<a href=\"news.html\">" + newsItem[c] + "</a>";
c++;
t=setTimeout("timedCount()",4000);
}

function stopCount(){clearTimeout(t);}

timedCount();
