	var stt = 1;
	var txt = new Array();
/*Here you can change your Text - Inbetween the > <*/
	txt[0] = "<a href='index.html'>Welcome to G.J. Walsh &amp; Co.</a>";
	txt[1] = "<a href='team.html'>Check out our friendly team members.</a>";
	txt[2] = "<a href='services.html'>Our professional services include income tax, accounting, audting, business advisory and financial services.</a>";
	txt[3] = "<a href='specialities.html'>We specialise in many areas such as small and medium sized business advice.</a>";
	txt[4] = "<a href='developments.html'>We remain current and up to date on all legislative changes.</a>";
	txt[5] = "<a href='contact.php'>Contact us or read our monthly NEWSLETTERS for more information.</a>";
	txt[6] = "<a href='contact.php'>See our LATEST NEWSLETTER.</a>";

		
	var tle = txt.length - 1;

	function starttext() {
		window.setInterval("banner_change('textbanner')",5000);
	}
	function banner_change(id){
    	document.getElementById(id).innerHTML = txt[stt];
		stt = (stt == tle) ? 0 : stt + 1;
	}

