<!-- Begin

// Scrolling text string.
	var strText="...............Don't miss......the......next...... The Arizona EquiFest......Make Your Plans to Attend......"; 
	// Length of the text
	var intText=strText.length; 
	// Speed of the scroll 
	var intSpeed=50; 
	// WIDTH of the scrolling area.
	var intWIDTH=150; 
	var intPos=1-intWIDTH;
	function scroll()
	{
	// Initialize the string to be printed.
	intPos++;
	var strScroll="";
	// Move to the right in the string.
	if (intPos==intText)
	{
	// Start over if the string is done.
	intPos=1-intWIDTH;
	}
	// Scrolling
	if (intPos<0)
	{// Add spaces to beginning if necessary.
	for (var i=1; i<=Math.abs(intPos); i++)
	{strScroll=strScroll+" ";}
	strScroll=strScroll+strText.substring(0, intWIDTH-i+1);
	}else{strScroll=strScroll+strText.substring(intPos,intWIDTH+intPos);}
	window.status = strScroll;
	setTimeout("scroll()", intSpeed);}
  //  End -->
