 <!-- Hide from old browsers

  // All you have to do is put another text in the variable message.
  // Don't forget to break all lines with a ^
  // When you do not place a ^ at the end of all the message, the
  // message will not repeat
  //DO NOT END THE LAST LINE WITH A '+' ONE IS NOT NEEDED TO END 
  
  		message= 	"LaVilla School of the Arts, 501 N. Davis Street, Jacksonville FL 32202, 904.633.6069^" 
  									
          			        
                 
                        
                

  scrollSpeed = 35
  lineDelay   = 1000
   // Do not change the text below //

  txt         = ""

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pause  = scrollSpeed
    }
    else {
      pause = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pause)
  }

  // Unhide -->
scrollText(0)
function showHide(id, toggle) 	
	{
	eval("document.getElementById(id).style.visibility = \"" + toggle + "\"");
	}
document.write('<link rel="stylesheet" type="text/css" href="sitecss.css">');