var s = 0;
var count = 0;
var m = 40;
var d = 3000;

var msg = new Array();
msg[0] = "Welcome To";
msg[1] = "Mary Queen Of The World Parish";
msg[2] = "<FONT COLOR=\"RED\">A Stewardship Parish</FONT>";
msg[3] = "<I>&quot;The Lord's way is our way&quot;</I>";
msg[4] = "Welcome To<BR>Mary Queen Of The World Parish<BR><FONT COLOR=\"RED\">A Stewardship Parish</FONT><BR><I>&quot;The Lord's way is our way&quot;</I>";

var txt = document.getElementsByName('cont');

function changeMsg()
{
	if(txt){
		if (count >= msg.length){
			count = 0;
			// url to redirect after last zoom
			//location.href=('your_page.html');
			return true;
		}
		txt = document.getElementById("cont");
		txt.innerHTML=msg[count]; 
		s=0;	
		zoomTxt();
		count++;
		setTimeout("changeMsg()", d);
	}
}

function zoomTxt(){
	if(s<m){
		txt.style.fontSize = s;s+=5;
		setTimeout("zoomTxt()", 100);
	}
}



