<!-- Hide script from old browsers

myMsg = "Little Angels Kindergarten. Address - 29 Prospect Street Rosehill. 2142 NSW. Phone - (02) 98970056 Fax - (02) 98970056 ... Angel Cottage Childcare Centre. Address - 1 Core Street, Parramatta.  2150 NSW. Phone - (02) 98901463 Fax - (02) 98901463 ... Angel Babies Childcare Centre. 68 Thomas Street, Parramatta.2150 NSW. Phone - (02) 96302602 Fax - (02) 96302602 ... "



		i = 0
	
		function scrollMsg() {
			window.status = myMsg.substring(i,myMsg.length) + myMsg.substring(0,i)
			if (i < myMsg.length) {
				i++
			}
			else {
				i = 0
			}
			setTimeout("scrollMsg()",250)
		}
	
	// End hiding script from old browsers -->