<!-- Hide from old browsers

  message     = "Guitar World - Gold Coast Australia - 1/22 New St. Nerang, Queensland, 4211 - Phone.(07) 5596 2588^" +
                "All prices are in Australian dollars - click the order button for currency conversion and more info! ^" 

  scrollSpeed = 25
  lineDelay   = 3500

  // Do not change the text below //

  txt         = ""

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

  // Unhide -->
scrollText(0)
