function HelpArray(len) {
	this.length=len
}
HelpText = new HelpArray(5)
HelpText[0] = "Welcome to Ramkrishna Mission (Ceylon Branch) Web Site"
HelpText[1] = "We are pleasure to Welcome the Children of Imortal bliss"
HelpText[2] = "TRUTH IS ONE SAGES CALL IT BY VARIOUS NAMES"
HelpText[3] = "Ekam Sath Vipbra Bahutha Vathanthi"
HelpText[4] = "Let us pray to God for the Unity in Diversity"

ScriptText = new HelpArray(5)

var i = -1
function playHelp()
{
	if (i == 4) 
	{
		i = 0
	}
	else
	{
		i++
	}
	
	div1.filters[0].apply()
	div1.innerText = HelpText[i]
	if (i % 2 == 1)
	{
		div1.style.backgroundColor="#800000"
	}
	else
	{
		 div1.style.backgroundColor="#FFCCCC"
	}
	div1.filters[0].play()

	mytimeout = setTimeout("playHelp()",7000)
}
