var news = new Array();

//max length of single line must be between 28-35
/*
news[0] = "<a class='paraNews' href='/news/skandashasti.asp'>Skanda Shasti & Baba's Message - Oct. 30th</a>";
news[1] = "<a class='paraNews' href='/news/diwali.asp'>Deepavali Festival & Baba's Message - Oct. 24th</a>";
news[2] = "<a class='paraNews' href='/news/golu.asp'>Navarathri Special - Human Golu in Samratchana - Sept. 25th to Oct. 5th</a>";
news[3] = "<a class='paraNews' href='/news/default.asp#0'>Independence Day Celebrations at Sushil Hari International School - Aug. 15th</a>";
news[4] = "<a class='paraNews' href='/news/default.asp#1'>Pournami Pooja at Rama Rajya - August 11th</a>";
news[5] = "<a class='paraNews' href='/news/default.asp#2'>Visitors comments…</a>";
news[6] = "<a class='paraNews' href='/news/default.asp#3'>Marriages are made in Heaven</a>";
*/


var nMaxNewsCount = news.length;
var nCurNewsIdx = -1;

function onNextNews()
{
	nCurNewsIdx++;
	
	if (nCurNewsIdx == nMaxNewsCount)
		nCurNewsIdx = 0;
	
	var obj = document.all ? document.all["idNews"] : document.getElementById("idNews");
	obj.innerHTML = news[nCurNewsIdx];
}

function onPrevNews()
{
	nCurNewsIdx--;
	
	if (nCurNewsIdx < 0)
		nCurNewsIdx = nMaxNewsCount-1;
	
	var obj = document.all ? document.all["idNews"] : document.getElementById("idNews");
	obj.innerHTML = news[nCurNewsIdx];
}

function onNewsTimer()
{
	onNextNews();
}


var msg = new Array();

msg[0] = "You have come";
msg[1] = "To the right place";
msg[2] = "At the right time";
msg[3] = "To the right person";
msg[4] = "I will take care of you";

var nMsgCount = msg.length;
var nCurMsgIdx = -1;

function onNextMsg()
{
	nCurMsgIdx++;
	
	if (nCurMsgIdx == nMsgCount)
		nCurMsgIdx = 0;
	
	var Msgobj = document.all ? document.all["idReach"] : document.getElementById("idReach");
	Msgobj.innerHTML = msg[nCurMsgIdx];
}

function onMsgTimer()
{
	onNextMsg();
}

function AddNewsItem ( strNews ) 
{
	news[news.length] = strNews
}