var msgArray = new Array(
"Open Track Begins August 7th."
//,"See Schedule For Complete Listing of Events"
);
var speed = 30;
var cdel = 2000;
var maxfont = 30;
var minfont = 27;

// Expanding and shrinking text banner Javascript
// copyright 24th July 2005, by Stephen Chapman http://javascript.about.com
// permission to use this Javascript on your web page is granted
// provided that this copyright notice is included
var x = minfont;
var y = 0;
var msg;
function start() 
       {
//	    alert('Starting Start');
		bnr('1');
//	    alert('done Starting');
		}
	   
function bnr(dir){
        if (dir) 
		   {msg = msgArray[y];
		   if (x < maxfont) {
		      x++;
			  setTimeout("bnr(1)",speed);}
		   else 
		      setTimeout("bnr(0)",cdel);
		   }
        else 
		    {
		   if (x > minfont) {
		      x--;
			  setTimeout("bnr(0)",speed);}
		   else {
		      setTimeout("bnr(1)",10);
			  y++;
			  if (y>=msgArray.length) 
			     y=0;}
		    }
		document.getElementById('btx').innerHTML = msg;
		btx.style.fontSize=x+'px'
		}
window.onload = start;
//window.onload = document.write('START<br>');
